.login-wrap { 
    width: 100%; 
    min-height: 100vh; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    padding: 20px; 
}

.login-card { 
    width: 100%; 
    max-width: 400px; 
    background: #091122; 
    border: 1px solid rgba(245, 158, 11, 0.35); 
    border-radius: 20px; 
    box-shadow: 0 0 30px rgba(245, 158, 11, 0.12), 0 20px 50px rgba(0, 0, 0, 0.8); 
    padding: 40px 34px; 
    display: flex; 
    flex-direction: column; 
    align-items: center; 
}

.login-logo { 
    width: 100%; 
    max-width: 280px; 
    height: auto; 
    margin-bottom: 22px; 
}

.login-title { 
    font-size: 1.6rem; 
    font-weight: 800; 
    letter-spacing: -0.5px; 
    text-align: center; 
    line-height: 1.1; 
}

.login-title span { 
    color: #f59e0b; 
    display: block; 
}

.login-sub { 
    color: #94a3b8; 
    font-size: 0.82rem; 
    text-align: center; 
    margin: 10px 0 26px; 
    line-height: 1.4; 
}

.login-form { 
    width: 100%; 
    display: flex; 
    flex-direction: column; 
    gap: 16px; 
}

.field-group { 
    display: flex; 
    flex-direction: column; 
    gap: 7px; 
}

.field-label { 
    font-size: 0.72rem; 
    font-weight: 800; 
    color: #f59e0b; 
    letter-spacing: 0.6px; 
    text-transform: uppercase; 
}

.field-input-wrap { 
    display: flex; 
    align-items: center; 
    gap: 10px; 
    background: #09152b; 
    border: 1px solid #0284c7; 
    border-radius: 8px; 
    padding: 11px 14px; 
    transition: border-color 0.2s ease; 
}

.field-input-wrap:focus-within { 
    border-color: #f59e0b; 
}

.field-input-wrap i { 
    color: #38bdf8; 
    font-size: 0.9rem; 
    width: 16px; 
    text-align: center; 
}

.field-input { 
    flex: 1; 
    background: transparent; 
    border: none; 
    outline: none; 
    color: #ffffff; 
    font-size: 0.9rem; 
    font-family: 'Inter', sans-serif; 
}

.field-input::placeholder { 
    color: #64748b; 
}

.btn-login { 
    margin-top: 8px; 
    background: #f59e0b; 
    color: #0b1329; 
    font-weight: 800; 
    font-size: 0.9rem; 
    border: none; 
    border-radius: 8px; 
    padding: 13px; 
    cursor: pointer; 
    display: inline-flex; 
    align-items: center; 
    justify-content: center; 
    gap: 9px; 
    transition: background 0.2s ease, transform 0.2s ease; 
}

.btn-login:hover { 
    background: #d97706; 
    transform: translateY(-1px); 
}

.login-foot { 
    margin-top: 22px; 
    font-size: 0.72rem; 
    color: #64748b; 
    text-align: center; 
}

/* Alertas de error */
.alert-error {
    background: rgba(239, 68, 68, 0.15);
    border: 1px solid #ef4444;
    color: #f87171;
    padding: 10px;
    border-radius: 8px;
    font-size: 0.8rem;
    width: 100%;
    text-align: center;
    margin-bottom: 16px;
}