* { margin: 0; padding: 0; box-sizing: border-box; -webkit-font-smoothing: antialiased; }

body {
    font-family: 'Manrope', sans-serif;
    background-color: #ffffff;
    color: #000000;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.login-wrapper { width: 100%; max-width: 480px; padding: 20px; display: flex; flex-direction: column; align-items: center; }

.login-card {
    width: 100%;
    background: #ffffff;
    padding: 40px;
    border: 1px solid #f0f0f0;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

.login-header { text-align: center; margin-bottom: 40px; }
.login-logo { width: 160px; height: auto; }

.login-body h1 { font-size: 24px; font-weight: 700; margin-bottom: 8px; text-align: center; }
.subtitle { font-size: 14px; color: #666; margin-bottom: 32px; text-align: center; }

/* BOTÕES SOCIAIS SIMÉTRICOS */
.social-auth {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 32px;
}

.btn-social {
    flex: 0 0 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #ffffff; /* Fundo branco para destacar as cores do ícone */
    border: 1px solid #e2e2e2;
    border-radius: 8px;
    cursor: pointer;
    transition: border-color 0.2s;
}

.btn-social:hover {
    border-color: #000000;
}

.btn-social img {
    width: 22px;
    height: 22px;
    display: block;
    filter: none !important;
    object-fit: contain;
}

.divider { position: relative; text-align: center; margin-bottom: 32px; }
.divider::before { content: ""; position: absolute; top: 50%; left: 0; width: 100%; height: 1px; background-color: #f0f0f0; z-index: 1; }
.divider span { position: relative; z-index: 2; background: #ffffff; padding: 0 15px; font-size: 12px; color: #999; }

.form-group { margin-bottom: 16px; }
.input-field {
    width: 100%;
    height: 56px;
    padding: 0 16px;
    border: 1px solid #e2e2e2;
    border-radius: 8px;
    font-family: 'Manrope', sans-serif;
    font-size: 15px;
    outline: none;
    margin-bottom: 12px;
}

.input-field:focus { border-color: #000; }

.btn-continue {
    width: 100%;
    height: 56px;
    background-color: #111;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 800;
    cursor: pointer;
    margin-top: 8px;
}

.btn-continue:hover { background-color: #000; }

.toggle-auth-text { text-align: center; margin-top: 24px; font-size: 13px; color: #666; }

.login-footer { margin-top: 40px; display: flex; gap: 20px; }
.link-footer-btn { background: none; border: none; font-family: 'Manrope'; font-size: 12px; color: #666; cursor: pointer; }

/* Botão no modal e ajuste de cursor */
.modal-overlay {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.4); display: none; justify-content: center; align-items: center; z-index: 1000;
}
.modal-content { background: #fff; width: 90%; max-width: 450px; padding: 30px; border-radius: 12px; }
.btn-modal-close { background: #000; color: #fff; padding: 10px 25px; border: none; border-radius: 20px; margin-top: 20px; cursor: pointer; }

.modal-text-body h2 { 
    text-align: center; 
    margin-bottom: 15px; 
}

.modal-text-body p { 
    text-align: center; 
}

.modal-actions { 
    display: flex; 
    justify-content: center; 
    width: 100%; 
    margin-top: 20px; 
}

#switch-to-signup { 
    cursor: pointer; 
    transition: opacity 0.2s; 
}

#switch-to-signup:hover { 
    opacity: 0.7; 
}