/* Modal Container */
.modal-custom-auth {
    max-width: 420px;
}

.auth-card {
    border-radius: 24px !important;
    background-color: #ffffff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.auth-close {
    position: absolute;
    top: 20px;
    right: 20px;
}

/* Header */
.auth-avatar {
    width: 48px;
    height: 48px;
    background-color: #d97757;
    color: #ffffff;
    font-size: 1.3rem;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.auth-title {
    font-family: 'Georgia', serif;
    font-weight: 700;
    color: #1a2530;
    font-size: 1.4rem;
}

.auth-subtitle {
    font-size: 0.85rem;
}

/* Abas (Entrar / Cadastrar) */
.auth-tabs {
    background-color: #f4ede6;
    border-radius: 16px;
}

.tab-btn {
    border: none;
    background: transparent;
    padding: 10px 0;
    font-weight: 600;
    font-size: 0.95rem;
    color: #555555;
    border-radius: 12px;
    transition: all 0.2s ease-in-out;
}

.tab-btn.active {
    background-color: #ffffff;
    color: #000000;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
}

/* Campos de Formulário */
.form-label-custom {
    font-size: 0.72rem;
    font-weight: 700;
    color: #555555;
    letter-spacing: 0.5px;
    margin-bottom: 6px;
}

.form-control-custom {
    background-color: #faf7f2;
    border: 1px solid #efe8df;
    border-radius: 12px;
    padding: 12px 14px;
    font-size: 0.95rem;
    color: #333333;
}

.form-control-custom:focus {
    background-color: #ffffff;
    border-color: #d97757;
    box-shadow: 0 0 0 3px rgba(217, 119, 87, 0.15);
}

.btn-eye-custom {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #888888;
    cursor: pointer;
}

/* Botão Principal */
.btn-auth-primary {
    background: linear-gradient(135deg, #e36d4f 0%, #d85c3f 100%);
    border: none;
    color: #ffffff;
    font-weight: 600;
    font-size: 1rem;
    padding: 12px;
    border-radius: 14px;
    box-shadow: 0 4px 12px rgba(216, 92, 63, 0.3);
    transition: transform 0.1s ease, box-shadow 0.2s ease;
}

.btn-auth-primary:hover {
    color: #ffffff;
    box-shadow: 0 6px 16px rgba(216, 92, 63, 0.4);
    transform: translateY(-1px);
}