.password-change__body {
	display: flex;
	justify-content: center;
	align-items: center;
	height: 100vh;
}
.password-change__container {
	width: 500px;
	border-radius: 4px;
	padding: 80px 50px 50px 50px;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1), 0 6px 20px rgba(0, 0, 0, 0.1);
}
.password-change__title {
	color: var(--gray-80);
	font-size: 26px;
	margin-bottom: 5px;
}
.password-change__heading {
	color: var(--gray-80);
	font-size: 36px;
}
.password-change__input-wrap {
	margin: 40px 0;
	display: flex;
	flex-direction: column;
	gap: 20px;
}
.password-change__input-group {
	position: relative;
}
.password-change__input {
	padding: 0 3px 0 30px;
	font-size: 14px;
	width: 100%;
	height: 30px;
	border: none;
	border-bottom: 1px solid var(--gray-40);
	outline: none;
}


.custom-checkbox {
	position: absolute;
	top: 5px;
	left: 2px;
}
.custom-checkbox input[type="checkbox"] {
  	display: none;
  	pointer-events: none;
}
.custom-checkbox__box {
	display: inline-block;
  	width: 18px;
  	height: 18px;
  	border: 1px solid var(--gray-40);
  	background-color: var(--bg-white);
  	border-radius: 2px;
  	position: relative;
}
.custom-checkbox__check-icon {
	position: absolute;
	top: -1px;
	right: -1px;
	width: 18px;
	height: 18px;
}
.custom-checkbox input[type="checkbox"]:checked + .custom-checkbox__box {
  	border-color: var(--danger-50);
  	background-color: var(--danger-50);
}

.password-change__info-area {
	padding-top: 20px;
}
.password-change__info-msg {
	color: var(--gray-70);
	font-size: 13px;
	font-weight: 500;
}
.password-change__error-msg {
	color: var(--danger-60);
	font-size: 13px;
	margin-bottom: 10px;
}
.password-change__validation-msg {
	font-size: 13px;
	color: var(--warning-50);
	font-weight: 500;
	margin-top: 5px;
}
.password-change__btn {
	width: 100%;
	border: 1px solid var(transparent);
	background-color: var(--primary-50);
	color: var(--text-white);
	border-radius: 3px;
	height: 40px;
	cursor: pointer;
	font-size: 14px;
}