body {
	margin: 0;
	line-height: normal;
}

.text-buttons {
	display: flex;
}


.user-type-selected {
	background-color: #f7f7f5;
	width: 100%;
	height: 100vh;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
}

.get-started {
	padding-left: 25px;
	padding-right: 25px;
	font-size: 35px;
	color: var(--color-white);
	font-family: var(--font-helvetica-now-display);
}

.get-started-description {
	padding-left: 30px;
	padding-right: 30px;
	padding-top: 20px;
	font-size: 16px;
	color: var(--color-white);
	font-weight: 400;
	font-family: var(--font-noto-sans);
}

.custom-fields-box {
	width: 100%;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	margin-bottom: 3%;
}

.custom-fields {
	width: 48%;
}

.input-field {
	background-color: #fff;
	border-radius: 10px;
	padding: 5%;
	font-size: 12px;

	margin-top: 10px;
}

.input-numbers {
	border: none;
	margin-top: -2px;
	width: 100%;
}

.input-numbers:focus {
	outline: none;
}


.field-title {
	font-size: 14px;
	color: var(--color-gray);
	font-family: var(--font-helvetica-now-display);
}

.input-text {
	font-size: 16px;
	color: #5C5C5C;
	display: flex;
	align-items: center;
}

.buttons {
	width: 150px;
	height: 50px;
	padding-left: 2%;
	padding-right: 2%;
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: center;
	border-radius: var(--br-3xs);
	background-color: var(--color-dodgerblue);
	cursor: pointer;
}

.sign-up {
	font-size: 14px;
	/*padding-right: 7px;*/
	color: var(--color-white);
	font-family: var(--font-helvetica-now-display);
}

.hello {
	font-size: 52px;
	color: var(--color-gray);
	font-family: var(--font-helvetica-now-display);
	margin-bottom: 20px;
}

.hide {
	display: none
}

.show {
	display: block;
}

.recovery-hello {
	font-size: 60px;
	color: var(--color-gray);
	font-family: var(--font-helvetica-now-display);
}

.incorrect-details {
	color: #fff;
	display: flex;
	justify-content: center;
	height: 40px;
	background: #FE646F;
	align-items: center;
	border-radius: 6px;
}

/*.incorrect-input-field{
  border-color: red;
}*/

.left-box {
	padding-left: 10%;
	padding-right: 10%;
	display: flex;
	flex-direction: column;
	height: 100vh;
	align-items: center;
	justify-content: center;
	width: 75%;
}

.left-box-inner {
	display: flex;
	justify-content: start;
	flex-direction: column;
	width: 100%;
}

.right-box {
	background-color: var(--color-gray);
	min-height: 100vh;
	width: 25%;
	border-top-left-radius: 35px;
	border-bottom-left-radius: 35px;
	text-align: center;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

input::placeholder {
	font-size: 12px;
	display: flex;
	align-items: center;
}

.description {
	font-size: 16px;
	color: var(--color-gray);
	font-weight: 400;
	font-family: var(--font-noto-sans);
}

.title {
	font-size: 25px;
	color: var(--color-gray);
	font-family: var(--font-helvetica-now-display);
}

.menu {
	background-color: #fff;
	border-radius: 20px;
	margin-top: 10px;
	box-shadow: 0 0 20px rgba(0, 0, 0, 0.03);
	display: flex;
	flex-direction: row;
	align-items: center;
	padding: 20px;
}

.hellos {
	margin-bottom: 5px !important
}

.images-userType {
	width: 90px;
	height: 90px;
}

.menu:hover {
	border: 1px solid #009cff;
}

.title-box {
	display: flex;
	flex-direction: column;
	justify-items: center;
	padding-left: 5%;
}

.title {
	font-size: 25px;
	color: var(--color-gray);
	font-family: var(--font-helvetica-now-display);
}

.sub-title {
	font-size: 12px;
	font-weight: 400;
	color: var(--color-gray);
	font-family: var(--font-noto-sans);
}

.buttons-box {
	display: flex;
	flex-direction: row;
	align-items: center;
}

.underline {
	text-decoration: underline;
}

.terms-text {
	font-family: var(--font-noto-sans);
	color: #151e30;
	width: 50%;
}

.input-with-icon {
	position: relative;
}

.password-toggle {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	right: 15px;
	cursor: pointer;
	height: 21px;
}

.dashboard-menu {
	display: flex;
	flex-direction: row;
	height: 50px;
	align-items: center;
	margin-right: 30px;
	padding-inline: 30px;
	border-bottom: 1px solid #2B2A41;
}

.dashboard-menu-icon {
	height: 20px;
	width: 20px;
	margin-right: 10px;
}

.dashboard-menu-text {
	font-size: 14px;
	color: #fff;
	padding-top: 18px;
}

.recovery-box {
	display: flex;
	flex-direction: column;
	justify-content: center;
}

/* Add these styles to your CSS */
.footer {
	display: none;
	position: fixed;
	bottom: 0;
	background-color: var(--color-gray);
	width: 100%;
	border-top-left-radius: 60px;
	border-top-right-radius: 60px;
	text-align: center;
	padding: 20px;
}

.footer .get-started {
	font-size: 25px;
	color: var(--color-white);
	font-family: var(--font-helvetica-now-display);
}

.footer .get-started-description {
	font-size: 14px;
	color: var(--color-white);
	font-family: var(--font-noto-sans);
}

.justify {
	justify-content: flex-start;
}


@media screen and (max-width: 990px) {
	.right-box {
		display: none;
	}

	.left-box {
		width: 100%;
		padding-right: 10%;
		justify-content: start;
	}

	.left-box-inner {
		justify-content: center;
	}

	.buttons-box {
		justify-content: center;
	}

	.footer {
		display: block;
	}

	.hello {
		display: flex;
		justify-content: center;
		text-align: center;
		margin-top: 20px;
	}

	.show {
		display: none
	}

	.hide {
		display: block;
	}
}

.pointer {
	cursor: pointer;
}

@media screen and (max-width: 860px) {
	.right-box {
		height: auto;
	}
}

@media screen and (max-width: 780px) {

	/*.user-type-selected {
    height: auto;
  }*/
	.teacher-signup {
		height: 125vh;
	}
}

@media screen and (max-width: 700px) {

	.recovery-box {
		display: block;
		flex-direction: row;
		margin-top: 10px;
	}

	.footer .get-started {
		font-size: 20px;
	}

	.recovery-hello {
		display: flex;
		justify-content: center;
	}

	.buttons-box {
		display: flex;
		justify-content: center;
	}

	.terms-text {
		width: 100%;
	}

	.justify {
		justify-content: center;
	}
}

@media screen and (max-width: 1040px) {

	.recovery-hello {
		font-size: 40px;
	}
}


@media screen and (max-width:460px) {

	.hello {
		font-size: 40px;
	}

	.recovery-hello {
		font-size: 32px;
	}

	.field-title {
		font-size: 14px;
	}

	.menu {
		display: block;
		text-align: center;
	}

	.images-userType {
		width: 50px;
		height: 50px;
		margin-bottom: 10px;
	}
}

:root {
	/* fonts */
	--font-noto-sans: "Noto Sans";
	--font-helvetica-now-display: 'Helvetica Now Display', sans-serif;

	/* font sizes */
	--font-size-3xl: 22px;
	--font-size-xl: 20px;
	--font-size-16xl: 35px;
	--font-size-smi: 13px;

	/* Colors */
	--color-gray: #1f1e30;
	--color-white: #fff;
	--color-dodgerblue: #009cff;

	/* Border radiuses */
	--br-51xl: 70px;
	--br-3xs: 10px;
	--br-16xl: 35px;
	--br-81xl: 100px;
}