﻿/* login.css */

/* Fondo general */
body {
    background: linear-gradient(to right, #e0f7ff, #f7fbff);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #333;
    min-height: 100vh;
    margin: 0;
    padding: 0;
}

/* Título */
h2.text-center {
    margin-top: 50px;
    color: #007BFF;
    font-weight: bold;
}

/* Contenedor del formulario */
form {
    background-color: #ffffff;
    padding: 35px 30px;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    margin-top: 40px;
}

    form:hover {
        border: 1px solid #007BFF;
    }

/* Etiquetas */
label {
    font-weight: 500;
    color: #0056b3;
}

/* Campos de entrada */
input.form-control {
    border-radius: 12px;
    border: 1px solid #ccc;
    transition: border 0.3s ease, box-shadow 0.3s ease;
}

    input.form-control:focus {
        border-color: #007BFF;
        box-shadow: 0 0 6px rgba(0, 123, 255, 0.4);
    }

/* Botón */
button.btn-primary {
    background-color: #007BFF;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

    button.btn-primary:hover {
        background-color: #0056b3;
        transform: translateX(3px);
        box-shadow: 0 0 10px rgba(0, 91, 187, 0.4);
    }

/* Alertas */
.alert {
    width: 50%;
    margin: 20px auto;
    border-radius: 10px;
}
