/* Reseteo básico y tipografía */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-color: white;
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    min-height: 100vh;
    padding: 20px;
}

/* Contenedor principal */
.login-box {
    max-width: 400px;
    width: 100%;
    padding: 10px;
}

/* Logo Davivienda */
.logo-container {
    text-align: center;
    margin-bottom: 20px;
    margin-top: 10px;
}

.logo-text {
    color: #ed1c24;
    font-size: 22px;
    font-weight: 900;
    letter-spacing: 1px;
}

/* Saludos */
.welcome-text {
    font-size: 18px;
    color: #333;
    margin-bottom: 5px;
}

.main-greeting {
    font-size: 24px;
    font-weight: 700;
    color: #1d1d1d;
    margin-bottom: 30px;
}

/* Grupos del formulario */
.form-group {
    margin-bottom: 20px;
}

.input-label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: #1d1d1d;
    margin-bottom: 8px;
}

/* Estilo de Inputs y Selects */
select, input[type="text"], input[type="password"] {
    width: 100%;
    padding: 12px 15px;
    border-radius: 8px;
    border: 1px solid #ccc;
    font-size: 16px;
    outline: none;
    transition: border-color 0.3s;
}

select:focus, input:focus {
    border-color: #ed1c24;
}

/* Checkbox */
.checkbox-container {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    font-size: 14px;
    color: #4a4a4a;
}

/* Botón Rojo Estilo Píldora */
.btn-login {
    background-color: #ed1c24;
    color: white;
    border-radius: 25px;
    border: none;
    height: 50px;
    width: 100%;
    font-weight: 600;
    font-size: 16px;
    margin-top: 10px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-login:hover {
    background-color: #c41219;
}

/* Footer link */
.footer-link {
    text-align: center;
    margin-top: 50px;
    font-weight: 600;
    color: #4a4a4a;
    font-size: 15px;
    border-top: 1px solid #eee;
    padding-top: 20px;
    cursor: pointer;
}