.auth-page {
    display: flex;
    justify-content: center;
    margin: 40px 0;
}

.auth-box {
    background: #fff;
    width: 100%;
    max-width: 420px;
    padding: 32px;
    border-radius: 4px;
}

/* TEXTO */
.auth-title {
    font-size: 26px;
    margin-bottom: 6px;
}

.auth-subtitle {
    font-size: 14px;
    color: #555;
    margin-bottom: 24px;
}

/* TABS */
.auth-tabs {
    display: flex;
    margin-bottom: 24px;
}

.auth-tab {
    flex: 1;
    padding: 12px;
    border: none;
    background: #f5f5f5;
    cursor: pointer;
    font-size: 14px;
}

.auth-tab.active {
    background: #3483FA;
    color: #fff;
    font-weight: bold;
}

/* FORM */
.auth_form {
    flex-direction: column;
    gap: 12px;
    display: flex;
}

.auth-form.active {
    display: flex;
}

/* INPUT */
.auth-input {
    padding: 12px;
    border: 1px solid #ddd;
    font-size: 14px;
}

/* AÇÕES */
.auth-actions {
    text-align: right;
}

.auth-link {
    font-size: 13px;
    text-decoration: none;
    color: #3483FA;
}

/* BOTÃO */
.auth-btn {
    padding: 14px;
    font-size: 15px;
    border: none;
    cursor: pointer;
    margin-top: 8px;
}

.auth-btn.primary {
    background: #3483FA;
    color: #fff;
    font-weight: bold;
}
