/* RESET DE LUXO */
:root {
    --preto-onix: #0B0B0B;
    --preto-grafite: #1A1A1A;
    --dourado-real: #C9A24D;
    --dourado-suave: #E1C97A;
    --esmeralda-luxo: #0F3D2E;
    --marfim-luxo: #F5F2EB;
    --gradiente-gold: linear-gradient(135deg, #C9A24D 0%, #E1C97A 50%, #C9A24D 100%);
}

.login-body {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle at center, #1a1a1a 0%, #050505 100%);
    background-image: url("https://www.transparenttextures.com/patterns/dark-matter.png"); /* Textura de grão fino */
    padding: 20px;
}

/* O CARD - ONIX E ESMERALDA */
.login-card {
    width: 100%;
    max-width: 480px;
    background: linear-gradient(145deg, #121212, #0a0a0a);
    padding: 60px 45px;
    position: relative;
    border: 1px solid rgba(201, 162, 77, 0.15); /* Borda Dourada quase invisível, só brilha no ângulo certo */
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.9), 
                inset 0 0 20px rgba(15, 61, 46, 0.1); /* Brilho esmeralda interno */
    overflow: hidden;
}

/* Linha de topo Esmeralda com Glow */
.login-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--esmeralda-luxo), transparent);
    box-shadow: 0 2px 15px var(--esmeralda-luxo);
}

.login-card h2 {
    font-family: 'Cinzel', serif;
    color: var(--marfim-luxo);
    font-size: 1.8rem;
    letter-spacing: 8px;
    text-align: center;
    margin-bottom: 40px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

/* INPUTS ESTILO MINIMALISTA EXECUTIVO */
.input-group {
    margin-bottom: 30px;
    position: relative;
}

.input-group label {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--dourado-real);
    margin-bottom: 12px;
    font-weight: 600;
}

.input-group input {
    width: 100%;
    padding: 15px 0; /* Padding apenas vertical */
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(245, 242, 235, 0.2); /* Linha fina Marfim */
    color: var(--marfim-luxo);
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    outline: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.input-group input:focus {
    border-bottom-color: var(--dourado-real);
    padding-left: 10px; /* Efeito de recuo ao focar */
}

/* BOTÃO BARRA DE OURO */
.btn-login {
    width: 100%;
    margin-top: 20px;
    padding: 20px;
    background: var(--gradiente-gold);
    color: #000;
    border: none;
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    letter-spacing: 4px;
    cursor: pointer;
    text-transform: uppercase;
    transition: all 0.5s ease;
    box-shadow: 0 15px 30px rgba(201, 162, 77, 0.2);
}

.btn-login:hover {
    letter-spacing: 6px; /* Texto expande levemente */
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(201, 162, 77, 0.4);
    filter: brightness(1.2);
}

.footer-link {
    text-align: center;
    margin-top: 35px;
    font-size: 0.75rem;
    color: var(--marfim-luxo);
    opacity: 0.5;
    letter-spacing: 1px;
}

.footer-link a {
    color: var(--dourado-real);
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
    border-bottom: 1px solid transparent;
}

.footer-link a:hover {
    border-bottom: 1px solid var(--dourado-real);
    opacity: 1;
}

/* RESPONSIVIDADE */
@media (max-width: 480px) {
    .login-card {
        padding: 50px 25px;
        margin: 15px;
    }
    .input-row {
        flex-direction: column;
    }
    .input-group {
        margin-bottom: 20px;
    }
}

/* Adicione isso ao seu arquivo login-styles.css existente */

.form-options {
    display: flex;
    justify-content: flex-end;
    margin-top: -15px;
    margin-bottom: 30px;
}

.forgot-password {
    font-size: 0.7rem;
    color: var(--marfim-luxo);
    opacity: 0.4;
    text-decoration: none;
    letter-spacing: 1px;
    transition: 0.3s;
}

.forgot-password:hover {
    opacity: 1;
    color: var(--dourado-suave);
}

/* Ajuste no título para seguir o padrão da Hero */
.gold-serif {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    color: var(--dourado-real);
}