@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
/* @import '~intro.js/introjs.css'; */

.res_load {
	position: fixed;
	width: 100vw;
	height: 100vh;
	top: 0;
	left: 0;
	z-index: 9999;
	display: none;
	justify-content: center;
	align-items: center;
	background: transparent;
	backdrop-filter: blur(10px);
}

.res_load.active {
	display: flex;
}
.vi__wrapper {
	display: block;
	margin: auto;
}

::-webkit-scrollbar {
	width: 4px !important;
	transition: all 0.4s ease-in-out !important;
	position: absolute;
}

::-webkit-scrollbar-thumb {
	background: linear-gradient(to top, #0072b3, rgb(0, 114, 179, 0.5), rgb(0, 114, 179, 0.8)) !important;
	border-radius: 5px !important;
	position: absolute;
}

::-webkit-scrollbar-thumb {
	background: linear-gradient(to top, #0072b3, rgb(0, 114, 179, 0.5), rgb(0, 114, 179, 0.8)) !important;
	border-radius: 5px !important;
	transition: all 0.4s ease-in-out !important;
}

*,
::before,
::after {
	font-family: 'Poppins', sans-serif;
	border: 0;
	box-sizing: border-box;
	background: transparent;
	list-style: none;
	text-decoration: none;
	outline: none;
	margin: 0;
	padding: 0;
}

html {
	font-size: 14px;
}

:root {
	--blue: #1dacfd;
	--grey: #a0aec0;
	--red: #ff4a55;
	--grey-60: #2d3748;
}

/* title */

.title {
	font-weight: 700;
	font-size: 2rem;
	line-height: 130%;
	color: var(--blue);
}

text {
	font-weight: 700;
	font-size: 1rem;
	line-height: 140%;
	text-align: center;
	color: var(--grey);
}

.btn {
	font-weight: 700;
	font-size: 1rem;
	line-height: 150%;
	padding: 1rem 1.2rem;
}

.white-text {
	color: #fff;
}

.w-100 {
	width: 100%;
}

.w-50 {
	width: 50%;
}

.white-content {
	background: #fff;
}

hr {
	background: var(--grey);
	height: 1px;
}

.red-content {
	background: var(--red);
}

.red-text {
	color: var(--red);
}

.blue-content {
	background: var(--blue);
}

.blue-text {
	color: var(--blue);
}

.grey-text {
	color: var(--grey);
}

.grey-content {
	background: var(--grey);
}

.my {
	margin: 1rem 0;
}

.my-2 {
	margin: 2rem 0;
}

.my-2 {
	margin: 3rem 0;
}

.flex {
	display: flex;
	align-items: center;
}

.gap {
	gap: 1rem;
}

.gap-2 {
	gap: 2rem;
}

.text-center {
	text-align: center;
}

.gap-3 {
	gap: 3rem;
}

.gap-4 {
	gap: 4rem;
}

.gap-5 {
	gap: 5rem;
}

.max {
	display: block;
	max-width: 1920px;
	margin: auto;
}

.layout {
	margin: 450px 0;
}

.r {
	border-radius: 0.8rem;
}

/* login navbar */

.login_navbar {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin: auto;
	padding: 1.2rem;
	background: linear-gradient(112.83deg, rgba(255, 255, 255, 0.82) 0%, rgba(255, 255, 255, 0.8) 110.84%);
	border: 1.5px solid #ffffff;
	box-shadow: 0px 7px 23px rgba(0, 0, 0, 0.05);
	backdrop-filter: blur(10.5px);
}

.login_navbar > .item {
	display: flex;
	align-items: center;
	gap: 1rem;
}

.login_navbar > .item a {
	font-weight: 700;
	line-height: 150%;
	text-align: center;
	color: var(--grey-60);
}

.pointer {
	cursor: pointer;
}

/* all input */
.input {
	position: relative;
	margin: 2.5rem 0;
}

.check {
	cursor: pointer;
}

.check_ {
	position: relative;
	user-select: none;
}

.check_ label::after {
	top: 0;
	cursor: pointer;

	/* z-index: -1; */
	left: 0;
	width: 36px;
	height: 18.5px;
	background: var(--red);
	border-radius: 97.7397px;
	content: '';
	position: absolute;
}

.check_ label {
	position: relative;
	top: 0;
	left: 0;
	/* z-index: -1; */
	padding-left: 40px;
	width: 100%;
}

.check_ input {
	opacity: 0;
	position: absolute;
	top: 0;
	left: 0;
	cursor: pointer;
	width: 36px !important;
	height: 18.5px;
	z-index: 222;
}

.check_ input:checked ~ label::before {
	left: calc(36px - (2.5px + 13px));
}

.check_ input:checked ~ label::after {
	background: var(--blue);
}

.check_ label::before {
	width: 13px;
	height: 13px;
	background: #fff;
	position: absolute;
	content: '';
	display: block;
	cursor: pointer;
	left: 2.5px;
	top: 2.5px;
	z-index: 1;
	border-radius: 50%;
	transition: all 0.4s cubic-bezier(0.32, 2, 0.55, 0.27);
}

label {
	font-weight: 400;
	line-height: 140%;
	color: var(--grey-60);
	margin: 1rem 0 0.5rem;
	display: block;
	min-height: 30px;
}

.check_ label a {
	color: var(--grey-60);
}

#phone > .react-tel-input .form-control {
	padding: 1rem 1.4rem !important;
	width: 100% !important;
	height: auto !important;
	line-height: 0 !important;
	font-size: 1rem !important;
	background: #ffffff !important;
	border: 1px solid #e2e8f0 !important;
	border-radius: 0.8rem !important;
}

.flag-dropdown {
	display: none !important;
}

.vi__character {
	background: #ffffff;
	border: 1px solid #e2e8f0;
	border-radius: 0.8rem;
}

.input_verify_center {
	display: block;
	margin: auto;
}

.input input,
.input textarea {
	padding: 1rem 1.4rem;
	background: #ffffff;
	border: 1px solid #e2e8f0;
	border-radius: 0.8rem;
	width: 100%;
	resize: none;
}

.login {
	/* width: 650px; */
	width: 50%;
	background: linear-gradient(112.83deg, rgba(255, 255, 255, 0.82) 0%, rgba(255, 255, 255, 0.8) 110.84%);
	border: 1.5px solid #ffffff;
	box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
	backdrop-filter: blur(10.5px);
	border-radius: 0.8rem;
	display: block;
	padding: 1.5rem 4rem;
	margin: 3rem 10rem;
}

footer {
	background: linear-gradient(112.83deg, rgba(255, 255, 255, 0.82) 0%, rgba(255, 255, 255, 0.8) 110.84%);
	border: 1.5px solid #ffffff;
	box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
	backdrop-filter: blur(10.5px);
	border-radius: 0.8rem;
	text-align: center;
	width: 100%;
}

.login input {
	width: 100%;
}

/* login_img */
.login_img {
	position: absolute;
	top: 0;
	right: 0;
	z-index: -1;
	width: 50%;
	height: 100%;
	object-fit: cover;
}

/* other_auth */
.other_auth a {
	font-weight: 400;
	font-size: 1rem;
	line-height: 140%;
	color: var(--grey);
}

/* register */
.register-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	align-items: center;
	padding: 20px;
}

.bg-register {
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	width: 100%;
	height: 100%;
}

.register form,
.register.form {
	display: block;
	box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
	width: 452.5px;
	padding: 1.5rem 4rem;
	position: relative;
}

/* media */
@media (max-width: 1600px) {
	.login {
		width: 70%;
		/* width: 550px; */
	}

	html {
		font-size: 12px;
	}
}

/* layout */
.content {
	position: relative;
	left: 22rem;
	/* background: red; */
	/* top: 2.5rem; */
	padding: 1rem;
	max-width: calc(100% - 22rem);
}

.saidbar {
	border-right: 0.1rem solid rgba(0, 0, 0, 0.16);
	width: 22rem;
	position: fixed;
	top: 0;
	height: 100%;
	padding: 0 1rem;
	background: white;
}

.saidbar .item {
	margin: 3rem 0;
}

.saidbar .item a {
	margin: 0.8rem 0;
	padding: 0.8rem;
	display: block;
	font-weight: 700;
	font-size: 12px;
	transition: all 0.4s cubic-bezier(0.32, 2, 0.55, 0.27);
	color: #a0aec0;
	white-space: nowrap;
}

.saidbar .item a.active {
	background: #ffffff;
	box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
	border-radius: 15px;
}

/* header */
header {
	position: relative;
}

header .bg_header {
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	width: 100%;
}

header nav {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

header nav .user {
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

.user .item_ {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.3rem;
}

.user .item {
	position: relative;
}

/* error-text */
.error-text {
	font-size: 0.9rem;
	color: var(--red);
	margin: 0.5rem 0;
	display: block;
	max-height: 0.1rem;
	min-height: 0.1rem;
}

.user .item span {
	position: absolute;
	width: 20px;
	height: 20px;
	right: 5px;
	top: 0;
	padding: 0.3rem;
	font-weight: 400;
	font-size: 0.8rem;
	line-height: 1rem;
	color: #ffffff;
	background: #ff4a55;
	border-radius: 40px;
}

/* call */
.call {
	background: url('../call_bg.png') center center/cover no-repeat;
	padding: 2rem;
	overflow: hidden;
	border-radius: 1rem;
}

/* grid 3 colum */
.grid-3 {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 0 1rem;
}

.grid-2 {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 0 1rem;
}

.grid-5 {
	display: grid;
	grid-template-columns: 18% 15% 15% 37% 8%;
	align-items: center;
	gap: 0 1rem;
}

/* card */
.card {
	padding: 1rem;
}

/* file */
#file_photo,
#file_photo2,
#file_photo3 {
	display: none;
}

.file_conetnt {
	padding: 2rem;
	border: 1px dotted var(--blue);
	text-align: center;
	height: 150px;
	width: 150px;
	display: block;
	margin: auto;
}

.css-1fdsijx-ValueContainer {
	padding: 0.9rem 1.4rem !important;
}

.css-13cymwt-control {
	border: 1px solid #e2e8f0 !important;
	border-radius: 0.8rem !important;
}

.file_conetnt {
	position: relative;
	height: 10rem;
}

.file_conetnt label {
	position: absolute;
	left: 0;
	top: 0;
	z-index: 999;
	width: 100%;
	height: 100%;
}

.file_conetnt img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.profile_ {
	background: linear-gradient(112.83deg, rgba(255, 255, 255, 0.82) 0%, rgba(255, 255, 255, 0.8) 110.84%);
	border: 1.5px solid #ffffff;
	box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
	backdrop-filter: blur(10.5px);
	position: relative;
	top: -1rem;
}

.profile_ .input {
	margin: 1.5rem 0;
}

/* level */

.level {
	display: flex;
	justify-content: center;
	align-items: center;
	user-select: none;

	position: relative;
	gap: 3rem;
}

.level button._ {
	width: 4rem;
	height: 4rem;
	text-align: center;
	line-height: 4rem;
	background: var(--grey);
	border-radius: 50%;
	font-size: 1.3rem;
	color: #fff;
	position: relative;
	cursor: pointer;
}

.level button._.active_ {
	background: var(--blue);
}

.level button._::before {
	content: '';
	width: 3rem;
	position: absolute;
	right: -3rem;
	top: 50%;
	transform: translateY(-50%);
	display: block;
	height: 0.1rem;
	background: var(--blue);
}

.level button._:nth-child(3)::before {
	display: none;
}

/* diraction */
.diraction_ form button {
	margin-top: 30px;
	white-space: nowrap;
}

/* table */
table {
	width: 100%;
}

th,
td {
	font-size: 1.2rem;
	color: var(--grey-60);
	padding: 1rem;
}

td {
	padding: 1rem;
}

table,
tr,
th,
td {
	border: 1px solid var(--grey);
	border-collapse: collapse;
	padding: 00.1rem;
}

/* timer */
.timer {
	margin: 0;
	padding: 0;
	font-size: 3rem;
	color: var(--red);
	text-align: center;
}

.level {
	position: relative;
}

._btn {
	position: absolute !important;
	top: 0;
	right: 0;
	border-radius: 0.8rem !important;
	width: unset !important;
	height: unset !important;
}

.notfound {
	text-align: center;
}

.notfound img {
	width: 100% !important;
	height: 350px !important;
}

.input .icon {
	position: relative;
	overflow: hidden;
}

.input .icon button {
	position: absolute;
	top: 0;
	right: 0;
	height: 100%;
	border-left: 1px solid #e2e8f0;
	border-radius: 0 5px 5px 0;
	z-index: 999;
	display: flex;
	align-items: center;
	cursor: pointer;
}

.input .icon button img {
	width: 40px;
	height: 40px;
	padding: 10px 5px;
}

.input .icon input {
	padding: 1rem 40px 1rem 1.4rem;
}

.grid-4 {
	display: grid;
	gap: 10px;
	align-items: center;
	grid-template-columns: repeat(4, 1fr);
}

.grid-3 .grid-4 {
	grid-column: span 3;
}

.grid-3 .grid-4:last-child {
	grid-template-columns: 0.5fr 0.5fr 0.5fr 1.2fr;
}

.grid-3 .grid-4:last-child > div:last-child {
	grid-column: span 2;
}

#person .input.active {
	grid-column: span 3;
}

#person .input {
	margin: 0 !important;
}

.grid-person-5 {
	display: grid;
	grid-column: span 3;
	grid-template-columns: repeat(5, 1fr);
	gap: 10px;
}

.sendperson {
	gap: 10px;
	padding-top: 30px;
	align-items: center;
}

#person .file {
	grid-row: span 2;
	text-align: center;
}

/* operator_grid */
.contents {
	position: fixed;
	top: -5px;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
	background: white;
}

.operator_grid {
	/* height: 100%; */
	display: grid;
	gap: 10px;
	grid-template-columns: repeat(4, 1fr);
}

.operator_grid.grid-1 {
	grid-template-columns: 100%;
}

.operator_grid.grid-2 {
	grid-template-columns: repeat(2, 1fr);
}

.operator_grid.grid-3 {
	grid-template-columns: repeat(3, 1fr);
}

.operator_grid.grid-5 {
	grid-template-columns: repeat(5, 1fr);
}

.operator_grid .item {
	background: var(--red);
	padding: 10px;
	color: white;
	height: 100%;
}

.operator {
	height: 100%;
}

.operator_grid .item.active {
	background: var(--blue);
}

.operator_grid .item h3 {
	font-size: 25px;
	justify-content: space-between;
}
.operator_grid .item h3 span:first-child {
}

/* media */
.menu {
	display: none;
	background: linear-gradient(112.83deg, rgba(255, 255, 255, 0.82) 0%, rgba(255, 255, 255, 0.8) 110.84%);
	border: 1.5px solid #ffffff;
	box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
	-webkit-backdrop-filter: blur(10.5px);
	backdrop-filter: blur(10.5px);
}

@media (max-width: 1400px) {
	.saidbar {
		width: 20rem;
	}

	.content {
		left: 20rem;
		max-width: calc(100% - 20rem);
	}
}

@media (max-width: 1150px) {
	.menu {
		display: block;
	}

	.content {
		left: 0;
		max-width: 100%;
	}

	.saidbar {
		width: 20rem;
		z-index: -999;
		opacity: 0;
		left: -30rem;
		background: white;
		transition: all 0.4s ease-in-out;
	}

	.saidbar.active {
		left: 0;
		z-index: 999;
		opacity: 1;
	}
}

.opacity {
	position: fixed;
	width: 100vw;
	height: 100vh;
	background: rgba(0, 0, 0, 0.5);
	left: 0;
	top: 0;
	z-index: -999;
	opacity: 0;
	transition: all 0.4s ease;
}

.opacity.active {
	z-index: 9;
	opacity: 1;
}

@media (max-width: 992px) {
	.login_img {
		width: 100%;
	}

	.register-grid {
		display: block;
	}

	.diraction form button {
		margin-top: 0;
	}

	.login {
		width: 90%;
		margin: 50px auto !important;
	}

	.grid-5 {
		grid-template-columns: repeat(3, calc(100% / 3 - 1rem));
		margin: 15px 0;
	}

	.grid-5 .input:nth-child(4) {
		grid-column: span 3;
	}
}

@media (max-width: 776px) {
	.login {
		width: 90%;
	}

	.grid-3 .grid-4 {
		grid-template-columns: repeat(3, 1fr);
	}

	#person .file {
		grid-row: span 2;
		grid-column: span 2;
	}
}

@media (max-width: 650px) {
	.grid-3 {
		display: block;
		grid-template-columns: 100%;
	}

	.grid-3 .grid-4 {
		grid-column: span 1;
	}

	#person .file {
		grid-row: span 2;
		grid-column: span 2;
	}
}

@media (max-width: 550px) {
	.grid-3 .grid-4 {
		grid-template-columns: repeat(2, 1fr);
	}
	.grid-2 {
		grid-template-columns: repeat(1, 1fr);
	}

	#person .file {
		grid-row: span 1;
		grid-column: span 1;
	}

	.grid-3 .grid-4 .input:last-child {
		grid-column: span 2;
	}

	.grid-5 {
		grid-template-columns: repeat(2, calc(100% / 2 - 1rem));
		margin: 15px 0;
	}

	.grid-5 .input:nth-child(4) {
		grid-column: span 1;
	}
}

@media (max-width: 500px) {
	header .bg_header {
		height: 200px;
	}

	.login {
		/* width: 400.5px; */
		padding: 3rem;
	}

	.register form,
	.register.form {
		width: 400.5px;
		padding: 3rem;
	}
}

@media (max-width: 410px) {
	.grid-3 .grid-4 {
		display: block;
	}

	.login {
		width: 350.5px;
		padding: 1.6rem;
	}

	.register form,
	.register.form {
		width: 350.5px;
		padding: 1.6rem;
	}

	#person .file {
		grid-row: span 1;
		grid-column: span 1;
	}

	.grid-3 .grid-4 .input:last-child {
		grid-column: span 2;
	}

	.grid-5 {
		display: block;
	}
}

.diraction_table {
	overflow-y: auto;
}

.diraction_table td {
	padding: 5px;
}

@media (max-width: 380px) {
	:where(.vi__container) {
		width: 250px !important;
		justify-content: center;
	}

	.register form,
	.register.form {
		width: 300.5px;
		padding: 1.3rem;
	}

	.login {
		width: 300.5px;
		padding: 1.3rem;
	}
}

.full {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 100vh;
	overflow-x: hidden;
}

.content.active_ .full {
	height: 100%;
}

.fixed {
	position: fixed;
	bottom: 0;
	width: 100%;
	left: 0;
}

.center-logo {
	display: block;
	margin: auto;
}

/* pdf start */
/* logo_phone */
.pdf {
	max-width: 1440px;
	display: block;
	margin: auto;
}

.logo_phone {
	justify-content: space-between;
	margin: 20px 0;
}

.logo_phone a {
	color: black;
}

.pdf-title {
	text-align: center;
	font-weight: 500;
}

.pdf hr {
	margin: 5px 0;
}

.right-text {
	text-align: right;
}

.person-info {
	display: grid;
	margin: 20px 0;
	grid-template-columns: 65% calc(35% - 25px);
	gap: 30px;
}

.person-info .item:first-child p {
	margin: 5px 0;
}

.person-info .item:first-child b {
	width: 150px;
	display: inline-block;
}

.pdf-diraction {
	display: grid;
	grid-template-columns: 20% 20% 60%;
	justify-content: center;
	text-align: center;
	margin: 20px 0;
}

.table table {
	border: 2px solid #000 !important;
}

.table td {
	border: 1px solid #000 !important;
	padding: 5px;
	/* text-align: center; */
}

.table td:first-child {
	text-align: center;
}

.pdf-number {
	padding: 10px;
}

.person-info-img {
	width: 200px;
	display: block;
	margin: auto;
}

/* pdf end */

@media (max-width: 768px) {
	.person-info {
		display: flex;
		flex-direction: column-reverse;
	}

	.pdf-diraction {
		display: flex;
		gap: 10px;
		flex-wrap: wrap;
	}
}

.avatar {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	object-fit: cover;
}

.qr-code {
	display: flex;
	justify-content: flex-end;
}

.qr-code img {
	width: 200px;
}

.chanages {
	display: flex;
	justify-content: flex-end;
	gap: 10px;
}

.content.active {
	width: 100%;
	left: 0;
	max-width: 1440px;
	display: block;
	margin: auto;
}

.register_test {
	display: flex !important;
	gap: 0;
	justify-content: space-between;
}

.register_test a {
	white-space: nowrap;
}

.full_login {
	justify-content: left !important;
}

.register_form {
	justify-content: right !important;
}

.register_form .login_img {
	left: 0;
}

.diraction_table tr td:nth-child(2),
td:nth-child(3),
td:nth-child(4),
td:nth-child(5) {
	text-align: center;
}

.login_header {
	justify-content: space-between;
}

.login_header a {
	color: var(--grey);
}

@media (max-width: 500px) {
	.login_header p {
		font-size: 0.8rem;
	}
}

.myTooltipClass {
	top: 100px;
}

.jshshir_info {
	width: 100%;
	height: 90%;
	/* height: 200px; */
	object-fit: contain;
}

body .introjs-button {
	display: none;
}

body .introjs-tooltipbuttons a {
	/* font-weight: 400; */
	font-size: 1.5rem;
	/* line-height: 150%; */
	padding: 1rem 1.2rem;
	background: var(--blue);
	color: rgba(255, 255, 255, 0.5);
	border: 1px solid var(--blue);
	outline: none;
	transition: all 0.4s ease-in-out;
	box-shadow: none;
	display: block;
}

.introjs-tooltipbuttons a:hover {
	background: #fff;
	color: #0072b3;
}

.introjs-hint-pulse {
	width: 25px !important;
	height: 25px !important;
	background: var(--blue) !important;
}

.info_jshshir {
	left: 0;
	width: 40px;
	height: 40px;
}

.jshshir input {
	padding: 1rem 40px 1rem !important;
	border-right: 1px solid #e2e8f0;
}

.jshshirModal {
	width: 100%;
	height: 350px;
	object-fit: contain;
}

.print_ {
	justify-content: space-between;
	padding: 10px;
	background: white;
}

.print_text {
	/* display: none; */
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
}

@media print {
	.print_text {
		width: 100%;
		height: 100%;
	}
}

/* @page { size: 80mm 50mm } */

.select2 {
	width: 100% !important;
}
.select2-selection--single {
	padding: 0.78rem 1.4rem;
	background: #ffffff;
	border: 1px solid #e2e8f0 !important;
	border-radius: 0.8rem !important;
	height: auto !important;
}
.select2-container--default .select2-selection--single .select2-selection__arrow {
	top: 50% !important;
	transform: translateY(-50%);
}
.select2-container--default .select2-selection--single .select2-selection__rendered {
	line-height: 1px !important;
	padding: 1rem 1.4rem;
}

/* forma */
.form-reg {
	width: 1200px;
}
.form-reg .input {
	margin: 15px 0;
}

.bg-register.form {
	background: green;
}
.form-reg .blue-content {
	background: #1e85fa;
}
@media (max-width: 1250px) {
	.form-reg {
		width: 1000px;
	}
}
@media (max-width: 1150px) {
	.form-reg {
		width: 900px;
		display: block;
		margin: auto;
	}
	.form-reg .grid-3 {
		grid-template-columns: repeat(2, 1fr);
	}
}
@media (max-width: 960px) {
	.form-reg {
		width: 800px;
		display: block;
		margin: auto;
	}
}
@media (max-width: 960px) {
	.form-reg {
		width: 90vw;
		display: block;
		margin: auto;
	}
	.form-reg .grid-3 {
		grid-template-columns: repeat(1, 1fr);
	}
}
@media (max-width: 555px) {
	.full {
		height: auto;
	}
	.login_img {
		height: 180%;
	}
}
