/* Auth Pages */
.auth_page {
	padding: 50px 15px;
}

.auth_page_wrapper {
	max-width: 550px;
	width: 100%;
	margin: 0 auto;
	padding: 24px;
	background: #b8c9cc;
	border-radius: 16px;
}

.auth_title {
	font-family: "Montserrat", Sans-serif !important;
	font-size: 36px !important;
	font-weight: bold !important;
	line-height: 44px !important;
	color: #d12127 !important;
	margin: 0 0 24px !important;
}

.form-group {
	margin-bottom: 24px;
}

.form-group label {
	font-weight: 500;
	font-size: 16px;
	line-height: 24px;
	display: block;
	margin-bottom: 4px;
}

.form-group input,
.form-group select,
.form-group textarea {
	border: 1px solid #DEE1E4;
	height: 48px;
	padding: 0 15px;
	font-size: 16px;
	line-height: 24px;
	border-radius: 12px;
	background: #FCFCFC;
	width: 100%;
	box-shadow: 0px 2px 0px 0px #E7EBEE33 inset;
}

.form-group textarea {
	height: 100px;
	display: flex;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
	box-shadow: unset;
	outline: none !important;
}

.form-group .icon-inner {
	position: relative;
}

.form-group .icon-inner input {
	padding-right: 40px;
}

.form-group .icon-inner .toggle-password {
	position: absolute;
	top: 14px;
	right: 16px;
	width: 20px;
	height: 20px;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
}

.form-group .icon-inner .toggle-password svg {
	width: 100%;
	height: 100%;
}

.form-group .icon-inner .toggle-password .close {
	display: none;
}

.form-group .icon-inner .toggle-password.icon-41 .close {
	display: flex;
}

.form-group .icon-inner .toggle-password.icon-41 .open {
	display: none;
}

.error-msg {
	font-size: 14px;
	line-height: 20px;
	margin-top: 4px;
	color: #d12127;
}

.form_check_box {
	font-family: "Roboto", Sans-serif;
	font-size: 14px;
	font-weight: 400;
	position: relative;
}

.form_check_box input {
	width: 0;
	height: 0;
	opacity: 0;
	position: absolute;
	top: 0;
	left: 0;
}

.form_check_box .checkbox_text {
	padding-left: 24px;
	position: relative;
	font-size: 16px;
	line-height: 24px;
	display: block;
	cursor: pointer;
}


.form_check_box .checkbox_text::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	transform: none;
	width: 18px;
	height: 18px;
	border: 1px solid #D12127;
	border-radius: 4px;
	background: #fff;
	transition: background 0.2s, border-color 0.2s;
}

.form_check_box input:checked~.checkbox_text::before {
	background: #D12127;
	border-color: #D12127;
}

.form_check_box .checkbox_text::after {
	content: "";
	position: absolute;
	left: 6px;
	top: 3px;
	width: 6px;
	height: 12px;
	border: solid #fff;
	border-width: 0 2px 2px 0;
	transform: rotate(45deg);
	margin-top: -2px;
}

.login_page .form_check_box {
	margin-bottom: 24px;
}

.auth_page_wrapper .common_orange_btn,
.auth_page_wrapper .common_orange_btn:hover {
	width: 100%;
	border-radius: 12px;
}

.auth_page_wrapper .common_orange_btn:hover {
	border: 1px solid #f25929;
}

.login_page .common_orange_btn {
	margin-bottom: 16px;
}

.sign-up-text {
	font-size: 16px;
	line-height: 24px;
	text-align: center;
	margin-top: 0;
}

.form_check_box .checkbox_text a:hover,
.sign-up-text a:hover,
.auth_page_wrapper .back_btn:hover {
	color: #f25929;
}

.auth_page_wrapper .back_btn{
	display: flex;
	align-items: center;
	justify-content: center;
	width: fit-content;
	margin: 16px auto 0; 
}


@media only screen and (max-width: 767px) {
	.auth_page_wrapper {
		padding: 24px 15px;
	}

	.auth_title {
		font-size: 24px !important;
		line-height: 32px !important;
	}
}