/* Profile Page Styles */

.profile-section {
    padding: 12rem 0 6rem;
    min-height: 100vh;
}

.auth-container {
    max-width: 500px;
    margin: 0 auto;
    background: var(--bg-dark-2);
    border: 1px solid var(--border-subtle);
    border-radius: 4px;
    overflow: hidden;
}

.auth-tabs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: var(--bg-dark-3);
}

.auth-tab {
    padding: 1.5rem;
    background: transparent;
    border: none;
    color: var(--text-gray);
    font-family: 'Outfit', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border-bottom: 3px solid transparent;
}

.auth-tab:hover {
    color: var(--text-light);
}

.auth-tab.active {
    color: var(--primary-gold);
    border-bottom-color: var(--primary-gold);
}

.auth-form {
    padding: 3rem;
    display: none;
}

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

.auth-form h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
}

.auth-form .btn {
    width: 100%;
    margin-top: 1rem;
}

/* Profile Dashboard */
.profile-dashboard {
    max-width: 800px;
    margin: 0 auto;
}

.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.dashboard-header h1 {
    font-size: 2.5rem;
}

.dashboard-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.user-info-card {
    background: var(--bg-dark-2);
    border: 1px solid var(--border-subtle);
    border-radius: 4px;
    padding: 2rem;
}

.user-info-card h2 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--primary-gold);
}

.info-row {
    display: flex;
    justify-content: space-between;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-subtle);
}

.info-row:last-child {
    border-bottom: none;
}

.info-label {
    color: var(--text-gray);
    font-weight: 600;
}

.info-value {
    color: var(--text-light);
}

#admin-section {
    text-align: center;
}

#admin-section .btn {
    display: inline-block;
    padding: 1.5rem 3rem;
    font-size: 1.1rem;
}

/* Responsive */
@media (max-width: 768px) {
    .profile-section {
        padding: 10rem 0 4rem;
    }

    .auth-form {
        padding: 2rem;
    }

    .dashboard-header {
        flex-direction: column;
        align-items: stretch;
    }

    .dashboard-header .btn {
        width: 100%;
    }
}
