/* --- ESTILOS ESPECÍFICOS PARA LOGIN --- */
.login-page {
    background: linear-gradient(135deg, #2c3e50 0%, #000000 100%);
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.login-card {
    background: white;
    width: 100%;
    max-width: 400px;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.3);
    text-align: center;
}

.login-header .app-logo {
    font-size: 2.5rem;
    color: #0052cc;
    font-weight: 800;
    margin-bottom: 10px;
}

.login-header h1 {
    font-size: 1.4rem;
    color: #172b4d;
    margin: 0;
}

.login-header p {
    color: #5e6c84;
    font-size: 0.9rem;
    margin-top: 5px;
    margin-bottom: 30px;
}

.input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.input-wrapper i {
    position: absolute;
    left: 15px;
    color: #a5adba;
}

.input-wrapper input {
    width: 100%;
    padding: 12px 12px 12px 45px; /* Espacio para el icono */
    border: 1px solid #dfe1e6;
    border-radius: 8px;
    background: #f4f5f7;
    font-size: 1rem;
}

.login-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
    margin: 20px 0;
    color: #5e6c84;
}

.btn-login {
    width: 100%;
    background: #0052cc;
    color: white;
    border: none;
    padding: 15px;
    border-radius: 8px;
    font-weight: bold;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-login:hover {
    background: #0040a1;
}

.login-footer {
    margin-top: 30px;
    border-top: 1px solid #ebecf0;
    padding-top: 20px;
    font-size: 0.75rem;
    color: #97a0af;
}

.trust-icons {
    margin-top: 10px;
    color: #36b37e;
}