/* ========================================
   Profile Page
   ======================================== */

.profile-container {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    min-height: calc(100vh - 80px);
    padding: 40px var(--rr-space-lg);
    overflow-y: auto;
}

.profile-card {
    width: 100%;
    max-width: 700px;
    border-radius: var(--rr-radius-lg);
    background-color: var(--rr-surface);
    border: 1px solid var(--rr-border);
    padding: 30px;
    box-shadow: var(--rr-shadow-sm);
}

.profile-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin-bottom: 30px;
}

.profile-logo {
    display: block;
}

.profile-email {
    font-weight: 500;
    color: var(--rr-text-secondary);
    letter-spacing: 0.3px;
}

.profile-form-wrapper {
    padding-right: var(--rr-space-sm);
    max-height: 100%;
}

@media (max-width: 599.98px) {
    .profile-container {
        padding: var(--rr-space-md) var(--rr-space-md);
    }

    .profile-card {
        padding: var(--rr-space-md);
    }
}
