.account__form {
	width: 100%;
}

.account__form form {
	display: grid;
	grid-template-columns: 156px 1fr;
	grid-template-rows: repeat(9, 68px) 40px;
	gap: 20px;
}

.account__form form div {
	grid-column: 1 / -1;
}

.account__form form div:nth-child(1) {
	grid-column: 1 / 2;
}
.account__form form div:nth-child(2) {
	grid-column: 2 / -1;
}
.account__form form div:nth-child(3) {
	grid-column: 2 / -1;
}

.account__label-input {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.account__label-input label {
	color: #233235;
	leading-trim: both;
	text-edge: cap;
	font-size: 18px;
	font-style: normal;
	font-weight: 500;
	line-height: normal;
	text-transform: capitalize;
}

.account__form input {
	height: 44px;
	padding: 0 16px;
	border: 2px solid #b8d1d1;
	border-radius: 2px;
	background-color: #fff;
}

.account__form input:focus-visible {
	outline: 2px solid #007d7a;
	z-index: 100;
}

.account__form button {
	width: 250px;
	display: flex;
	justify-content: center;
	align-items: center;
}

/* profile pic div */
.profile-pic {
	width: 156px;
	height: 156px;
	border-radius: 50%;
	position: relative;
	/* overflow: hidden; */
}

.profile-pic input[type='file'] {
	opacity: 0;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	padding: 0;
	border: none;
	border-radius: 50%;
	cursor: pointer;
	z-index: 10;
}

.profile-pic:focus-within {
	outline: 2px solid #007d7a;
}

.profile-pic__img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border-radius: 50%;
	overflow: hidden;
	z-index: 1;
}

.profile-pic__img img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	filter: brightness(0.65);
	transition: filter 0.2s ease-in-out;
	cursor: pointer;
}

/* darkens photo when hover over parent */
.profile-pic:hover .profile-pic__img img {
	filter: brightness(0.5);
}

.profile-pic__text {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 90%;
	display: flex;
	flex-direction: column;
	align-items: center;
	z-index: 5;
}

.profile-pic__text .fa-camera {
	color: #fff;
}

.profile-pic span {
	color: #fff;
	text-align: center;
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
	width: 90%;
}

/* removal of lastpass div being automatically added which affected layout */
.account__label-input > div[data-lastpass-icon-root] {
	display: none;
}
