.container {
	display: flex;
	margin-bottom: 2.5em;
}

/* Content Container */
.content-container {
	width: 55%;
	padding: 68px 153px;
}

.top-heading {
	font-size: 2.75rem;
	color: #1e283c;
}

.sub-desc {
	font-size: 14px;
	color: #1e283c;
	width: 65%;
	margin: 1.2rem 0px;
}

.benefits-list {
	color: #1e283c;
	font-size: 14px;
	margin-left: 2rem;
}

.teacher-main-img {
	margin-top: 24px;
	width: 100%;
}

/* Content Container end */

/* form  */
.form-container {
	width: 40%;
	background-color: white;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

.form-content-container {
	width: 70%;
	margin: 20px 0;
}

.form-heading {
	position: relative;
	display: inline-block;
	color: #1e283c;
	margin-bottom: 30px;
	font-weight: bolder;
	font-size: 32px;
}

.form-heading:after {
	content: "";
	position: absolute;
	width: 100%;
	height: 4px;
	bottom: -10px;
	border-radius: 2px;
	left: 0;
	background-color: #1e283c;
}

.form-title {
	color: #1e283c;
	font-size: 14px;
	font-weight: 400;
	margin-bottom: 54px;
	width: 70%;
}

.form-label {
	display: block;
	font-weight: 500;
	font-size: 16px;
	margin-bottom: 18px;
	color: #1e283c;
	text-transform: uppercase;
}

.form-label-field {
	margin-bottom: 24px;
}

.field-container {
	display: flex;
	align-items: center;
	height: 41px;
	width: 100%;
	border-radius: 5px;
	background-color: #f2f5fa;
	min-height: fit-content;
}

.field-container textarea {
	resize: vertical;
	border: none;
	background-color: #f2f5fa;
	border-radius: 5px;
	height: 100%;
	padding: 7px;
	font-size: 16px;
	outline: none;
	width: 100%;
	min-height: 100px;
}

.field-icon-container {
	/* background-color: white; */
	height: 41px;
	width: 41px;
	/* border-right: solid 2px #1E283C; */
	border-radius: 0px;
	display: flex;
	justify-content: center;
	align-items: center;
}

.field-icon {
	width: 18px;
}

.vertical-divider {
	height: 65%;
	width: 2px;
	margin: 0 5px 0 5px;
	border-radius: 1px;
	background-color: #1e283c;
}

#id_name,
#id_email,
#id_phone,
#id_address {
	width: 100%;
	border: none;
	background-color: #f2f5fa;
	border-radius: 5px;
	height: 100%;
	padding: 7px;
	font-size: 16px;
	outline: none;
}

.help-text {
	display: none;
	color: #50668f;
	margin-top: 7px;
}

.error-text {
	color: red;
	margin-bottom: 7px;
	font-size: 14px;
}

.show-pass,
#show-pass {
	display: inline-block;
	margin-top: 12px;
}

.btn {
	display: block;
	padding: 17px 32px;
	font-weight: 600;
	font-size: 16px;
	letter-spacing: 0.3px;
	text-transform: uppercase;
	border: none;
	border-radius: 5px;
	cursor: pointer;
}

.submit-btn {
	background-color: #ff6900;
	color: white;
	margin-bottom: 24px;
}

.change-form-title {
	font-size: 16px;
	color: #50668f;
	font-weight: 500;
}

.link {
	text-decoration: none;
	position: relative;
	display: inline-block;
	color: #1e283c;
	margin-bottom: 30px;
	font-weight: bolder;
}

.link:after {
	content: "";
	position: absolute;
	width: 100%;
	transform: scaleX(0);
	height: 2px;
	bottom: -3px;
	border-radius: 1px;
	left: 0;
	background-color: #1e283c;
	transform-origin: bottom right;
	transition: transform 0.25s ease-out;
}

.link:hover:after {
	transform: scaleX(1);
	transform-origin: bottom left;
}

/* end form */

/* <---------- Media Quries -----------> */

@media (max-width: 1400px) {
	.content-container {
		padding: 64px 94px;
	}
	.sub-desc {
		width: 85%;
	}
}

@media (max-width: 1199px) {
}

@media (max-width: 991px) {
	.container {
		flex-direction: column;
	}
	.form-container {
		width: 100%;
	}

	.content-container {
		width: 100%;
	}

	.form-image-container > div {
		width: 100%;
		height: fit-content;
	}

	.image-container {
		display: none;
	}
}

@media (max-width: 767px) {
	.content-container {
		padding: 36px 36px;
	}

	.sub-desc {
		width: 100%;
	}
}

@media (max-width: 566px) {
	.content-container {
		padding: 16px 0;
	}
	.sub-desc {
		width: 100%;
	}
	.container {
		margin: 0 16px;
	}
	.form-content-container {
		width: 100%;
	}

	.form-title {
		width: 100%;
	}
}
