.edit-user-page {
    display: flex;
    gap: var(--spacing-xl);
}

.edit-user-page > .user-card {
    flex: 1;
}

@media (max-width: 768px) {
    .edit-user-page {
        flex-direction: column-reverse;
    }
}

.edit-user-page > .form > .profile {
    display: flex;
    justify-content: center;
    margin-bottom: var(--spacing-lg);
    flex-direction: row;
    color: white;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-dark) 100%);
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
    align-items: center;
}

.edit-user-page > .form > .profile > svg {
    width: 80px;
    height: 80px;
    margin-right: var(--spacing-md);
}

.edit-user-page > .form {
    flex: 1;
}