/* ----------------------------------------------------------------

User Profile Menu

----------------------------------------------------------------*/

#user-profile-menu {
	border-radius: 12px;
	border: 1px solid var(--Default-Outline, #ebebeb);
	background: var(--3-White, #fff);
	display: flex;
	justify-content: flex-start;
}

#user-profile-menu ul {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	text-align: center;
	gap: 2rem;
}

#user-profile-menu li {
	width: 100%;
	display: flex;
	justify-content: flex-start;
	text-align: center;
	border: 1px solid transparent;
}

#user-profile-menuli a {
	text-align: center;
	justify-content: center;
}

#user-profile-menu .breakdance-menu-item--active {
	border-radius: 8px;
	border: 1px solid var(--bde-brand-primary-color);
	background: var(--Default-Background-Light, #fafafa);
}

#user-profile-menu .breakdance-menu-item:hover {
	border-radius: 8px;
	border: 1px solid var(--bde-brand-primary-color);
	background: var(--Default-Background-Light, #fafafa);
}

/* ----------------------------------------------------------------

End User Profile Menu

----------------------------------------------------------------*/

.user-profile-container {
	display: flex;
	flex-direction: column;
	gap: 3rem;
}

.personal-info-container,
.change-password-container {
}

.user-profile-container .form-group {
	gap: 8px;
	display: flex;
	flex-direction: column;
	margin-bottom: 16px;
}

.user-profile-container label {
	color: var(
		--bde-palette-color-1-61567e3a-2c5d-4ee8-a7b6-f5374655b5cc,
		#222
	);
	font-family: Inter;
	font-size: 12px;
	font-style: normal;
	font-weight: 400;
	line-height: 16px; /* 133.333% */
	letter-spacing: 1.2px;
	text-transform: uppercase;
}

.user-profile-container input[type="text"],
.user-profile-container input[type="email"],
.user-profile-container input[type="tel"],
.user-profile-container input[type="password"] {
	color: var(--bde-body-text-color);
	width: 100%;
	padding: 12px;
	border: 1px solid #ebebeb;
	border-radius: 8px;
	font-size: 16px;
}

.user-profile-container input[readonly] {
	background-color: #eee;
	cursor: not-allowed;
}

.user-profile-container .save-button {
	cursor: pointer;
	border-radius: 8px;
	border: 2px solid var(--Default-Outline, #ebebeb);
	background: var(--bde-brand-primary-color);
	padding: 16px 48px;
	color: var(--Default-White, var(--3-White, #fff));
	font-size: 18px;
	font-style: normal;
	font-weight: 600;
	line-height: 24px;
	transition: transform 0.2s ease;
}

.user-profile-container .save-button:hover {
	transform: scale(1.05);
}
