@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Manrope', sans-serif;
}

body {
    background-color: #F6EFE0;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.contenedor-login {
    width: 100%;
    max-width: 420px;
}

.tarjeta-login {
    background-color: #FFFFFF;
    border: 1px solid rgba(144, 171, 196, 0.4);
    border-radius: 16px;
    padding: 45px 35px;
    box-shadow: 0 10px 25px rgba(16, 24, 32, 0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.logo-universidad {
    height: 55px;
    width: auto;
    object-fit: contain;
    margin-bottom: 20px;
}

.titulo-portal {
    font-size: 24px;
    color: #002147;
    font-weight: 700;
    margin-bottom: 6px;
    text-align: center;
}

.subtitulo-portal {
    font-size: 14px;
    color: #818F9F;
    margin-bottom: 35px;
    text-align: center;
    font-weight: 400;
}

.formulario-autenticacion {
    width: 100%;
}

.grupo-entrada {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 22px;
    width: 100%;
}

.grupo-entrada label {
    font-size: 14px;
    font-weight: 600;
    color: #002147;
}

.grupo-entrada input {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #90ABC4;
    border-radius: 8px;
    font-size: 15px;
    outline: none;
    background-color: #FFFFFF;
    color: #101820;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.grupo-entrada input:focus {
    border-color: #004680;
    box-shadow: 0 0 0 3px rgba(0, 70, 128, 0.1);
}

.alerta-error {
    width: 100%;
    background-color: rgba(226, 89, 89, 0.1);
    color: #E25959;
    border: 1px solid rgba(226, 89, 89, 0.2);
    padding: 12px;
    border-radius: 8px;
    margin-bottom: 20px;
    text-align: center;
    font-size: 14px;
    font-weight: 500;
}

.boton-ingresar {
    width: 100%;
    background-color: #0072E5;
    color: #FFFFFF;
    border: none;
    padding: 14px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s ease;
    margin-top: 10px;
}

.boton-ingresar:hover {
    background-color: #005BB5;
}