.account-content { max-width: 600px; margin: 0 auto; padding: 2rem; }
.auth-form { display: flex; flex-direction: column; gap: 1rem; }
.auth-form h2 { text-align: center; margin-bottom: 1rem; }
.auth-toggle {
    text-align: center; color: var(--text-secondary); margin-top: 1rem;
}
.auth-toggle a { color: var(--text); text-decoration: underline; cursor: pointer; }

.profile-card { background: var(--bg-card); padding: 2rem; }
.profile-header {
    display: flex; justify-content: space-between; align-items: center;
    margin-bottom: 2rem;
}
.order-history-item {
    padding: 1rem; background: var(--bg-input); margin-bottom: 0.75rem;
    cursor: pointer; transition: var(--transition);
}
.order-history-item:hover { background: var(--bg-card); }