/* LoginEmpresa.css - Diseño integrado con la UNFV */

/* Definir colores de la marca para consistencia */
:root {
    --color-unfv-rojo: #7f1d1d;
    --color-unfv-azul: #27ae60; /* Verde distintivo */
    --color-fondo: #f0f4f8; /* Fondo similar al de las otras páginas */
    --color-sombra: rgba(0,0,0,0.15);
    --color-exito: #22c55e;
}

/* Reset básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}

body {
    min-height: 100vh;
    background: var(--color-fondo);
}

.auth-container {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 60px 20px;
}

form {
    background: #ffffff;
    padding: 40px 35px;
    border-radius: 12px;
    box-shadow: 0 10px 30px var(--color-sombra);
    width: 380px;
}

form {
    background: #ffffff;
    padding: 40px 35px; /* Mismo padding y ancho que Pregrado y Posgrado */
    border-radius: 12px;
    box-shadow: 0 10px 30px var(--color-sombra);
    width: 380px; 
}

/* Título principal del formulario (Empresa) */
form b {
    display: block;
    text-align: center;
    color: var(--color-unfv-rojo);
    font-size: 28px;
    font-weight: bold; /* Ya tienes la negrita, lo mantendremos */
    font-family: 'Montserrat', sans-serif; /* Nuevo: Aplica un tipo de letra más robusto */
    margin-bottom: 20px;
    border-bottom: 2px solid var(--color-unfv-rojo);
    padding-bottom: 10px;
}

form p {
    margin-bottom: 20px;
    font-size: 14px;
    color: #555;
    line-height: 1.5;
}

/* Campos de entrada */
input[type="text"],
input[type="password"] {
    width: 100%;
    padding: 10px 5px;
    border: none;
    border-bottom: 2px solid #ccc;
    margin-top: 5px;
    font-size: 16px;
    outline: none;
    transition: border-color 0.3s ease;
}

/* Efecto al enfocar (focus) */
input[type="text"]:focus,
input[type="password"]:focus {
    border-bottom: 2px solid var(--color-unfv-rojo); /* Destacamos con el color principal */
}

/* Botón de Login */
input[type="submit"] {
    width: 100%;
    padding: 14px;
    background-color: var(--color-unfv-rojo); /* Color principal del botón */
    color: white;
    border: none;
    border-radius: 8px; 
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease, box-shadow 0.2s ease;
    box-shadow: 0 4px 10px rgba(127, 29, 29, 0.4); 
}

input[type="submit"]:hover {
    background-color: var(--color-unfv-azul); /* Cambio al color secundario al pasar el mouse */
    box-shadow: 0 6px 15px rgba(30, 58, 138, 0.5);
    transform: none; 
}

/* Enlaces (¿Olvidaste tu contraseña? y Regístrate) */
a {
    text-decoration: none;
    color: var(--color-unfv-azul); /* Enlaces en azul */
    font-size: 14px;
    transition: color 0.2s;
}
a:hover {
    color: var(--color-unfv-rojo); /* Efecto al pasar el mouse */
}

a p {
    text-align: center;
    margin-top: 12px;
    margin-bottom: 12px;
}