/* === GENERAL === */
body {
    margin: 0;
    padding: 0;
    background: linear-gradient(135deg, #f7f4ef, #e3e0d8);
    font-family: 'Inter', sans-serif;
    color: #1c2b3a;
}

.login-container {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

/* === CARD === */
.login-card {
    background: #ffffff;
    width: 100%;
    max-width: 420px;
    padding: 40px;
    border-radius: 22px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.08);
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(15px); }
    to { opacity: 1; transform: translateY(0); }
}

/* === LOGO === */
.login-logo {
    text-align: center;
    margin-bottom: 25px;
}

.login-logo img {
    width: 150px;
    margin-bottom: 10px;
}

.login-logo h2 {
    margin: 0;
    font-family: "Playfair Display", serif;
    font-size: 1.7rem;
    font-weight: 600;
}

.login-logo .subtitle {
    color: #6a6f75;
    font-size: 0.9rem;
    margin-top: 5px;
}

/* === FORM === */
.login-form .input-group {
    margin-bottom: 20px;
}

.login-form label {
    display: block;
    margin-bottom: 6px;
    font-weight: 500;
}

.login-form input {
    width: 92%;
    padding: 12px 14px;
    font-size: 1rem;
    border: 1px solid #d7d4cf;
    border-radius: 12px;
    background: #faf9f7;
    transition: all .2s ease;
}

.login-form input:focus {
    border-color: #bfa56a;
    background: #fff;
    outline: none;
    box-shadow: 0 0 0 3px rgba(191,165,106,0.25);
}

/* === BOTÓN === */
.btn-login {
    width: 100%;
    background: #bfa56a;
    border: none;
    color: #fff;
    padding: 14px;
    margin-top: 10px;
    border-radius: 14px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: 0.25s ease;
}

.btn-login:hover {
    background: #a88e54;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(191,165,106,0.4);
}

/* === FOOTER === */
.login-footer {
    text-align: center;
    margin-top: 25px;
    font-size: 0.75rem;
    color: #8d8b88;
}
