:root {
    --ouro: #b78a6c;
    --preto: #000;
    --branco: #fff;
    --fundo: #faf9f7;
}

* { 
    margin: 0; 
    padding: 0; 
    box-sizing: border-box; 
    font-family: 'Montserrat', sans-serif; 
}

body {
    display: flex; 
    justify-content: center; 
    align-items: center; 
    min-height: 100vh; 
    background-color: transparent !important; 
    overflow-x: hidden;
}

.modal-container {
    background: #fff; 
    padding: 40px; 
    border-radius: 12px; 
    width: 95%; 
    max-width: 450px; 
    box-shadow: 0 10px 30px rgba(0,0,0,0.1); 
    border: 1px solid #eee;
    color: #333; 
    max-height: 95vh; 
    overflow-y: auto;
}

.logo-container { 
    text-align: center; 
    margin-bottom: 20px; 
}

.logo-animada { 
    height: 60px; 
    object-fit: contain;
}

h2 { 
    text-align: center; 
    margin-bottom: 5px; 
    color: #111; 
    font-family: 'Playfair Display', serif; 
    font-size: 1.8rem;
}

.subtitle {
    text-align: center;
    font-size: 0.82rem; 
    color: #777; 
    margin-bottom: 25px;
}

.input-group { 
    margin-bottom: 18px; 
    display: flex; 
    flex-direction: column; 
    position: relative;
}

.input-group label { 
    font-size: 0.75rem; 
    margin-bottom: 6px; 
    color: #666; 
    text-transform: uppercase; 
    font-weight: 600;
}

.input-group label i {
    margin-right: 5px;
}

input {
    padding: 12px 15px; 
    border-radius: 6px; 
    border: 1px solid #ddd;
    background: #f9f9f9; 
    color: #333; 
    width: 100%; 
    outline: none;
    transition: 0.3s;
}

input:focus {
    border-color: var(--ouro);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(183, 138, 108, 0.1);
}

.senha-container { 
    position: relative; 
    display: flex; 
    align-items: center; 
    width: 100%;
}

.senha-container input {
    padding-right: 40px;
}

.btn-ver-senha { 
    position: absolute; 
    right: 12px; 
    background: none; 
    border: none; 
    cursor: pointer; 
    color: #888; 
    font-size: 1rem;
}

.forgot-password {
    text-align: right;
    margin-top: -10px;
    margin-bottom: 20px;
}

.forgot-password a {
    font-size: 0.75rem;
    color: #888;
    text-decoration: none;
}

.forgot-password a:hover {
    color: var(--ouro);
}

.btn-premium { 
    width: 100%; 
    padding: 14px; 
    border: none; 
    border-radius: 6px; 
    font-weight: 600; 
    text-transform: uppercase; 
    cursor: pointer; 
    transition: 0.3s;
    background-color: var(--preto); 
    color: var(--branco);
    letter-spacing: 1px;
}

.btn-premium:hover { 
    background-color: #333; 
    transform: translateY(-1px);
}

.trocar-form { 
    text-align: center; 
    margin-top: 25px; 
    font-size: 0.85rem; 
    color: #666;
}

.trocar-form a { 
    color: var(--ouro); 
    text-decoration: none; 
    font-weight: 700; 
    margin-left: 5px;
}

.trocar-form a:hover {
    color: var(--preto);
}