#auth-section {
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: space-evenly;

	/* padding: 5% 7% 7% 7%; */
}

::selection {
	background: #1a75ff;
	color: #fff;
}

.wrapper {
	overflow: hidden;
	max-width: 390px;
	background-color: var(--fgColor);
	padding: 20px 30px 0px 30px;
	border-radius: var(--borderR);
	box-shadow: 0px 15px 20px rgba(0, 0, 0, 0.1);
	background-size: 1000%;
}

.wrapper .title-text {
	display: flex;
	width: 200%;
}

.wrapper .title {
	width: 50%;
	font-size: 35px;
	font-weight: 600;
	text-align: center;
	transition: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.wrapper .slide-controls {
	position: relative;
	display: flex;
	height: 50px;
	width: 100%;
	overflow: hidden;
	margin: 15px 0 10px 0;
	justify-content: space-between;
	border: 1px solid var(--bgColor);
	border-radius: var(--borderR);
}

.slide-controls .slide {
	height: 100%;
	width: 100%;
	color: #fff;
	font-size: 18px;
	font-weight: 500;
	text-align: center;
	line-height: 48px;
	cursor: pointer;
	z-index: 1;
	transition: all 0.6s ease;
}

.slide-controls label.signup {
	color: var(--textColor);
}

.slide-controls .slider-tab {
	position: absolute;
	height: 100%;
	width: 50%;
	left: 0;
	z-index: 0;
	border-radius: var(--borderR);
	background: -webkit-linear-gradient(left, #003366, #004080, #0059b3, #0073e6);
	transition: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

input[type="radio"] {
	display: none;
	/* z-index: 100; */
}

#signup:checked~.slider-tab {
	left: 50%;
}

#signup:checked~label.signup {
	color: #fff;
	cursor: default;
	user-select: none;
}

#signup:checked~label.login {
	color: var(--textColor);
}

#login:checked~label.signup {
	color: var(--textColor);
}

#login:checked~label.login {
	cursor: default;
	user-select: none;
}

.wrapper .form-container {
	width: 100%;
	overflow: hidden;
}

.form-container .form-inner {
	display: flex;
	width: 200%;
	
}

.form-container .form-inner form {
	width: 50%;
	transition: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.form-inner form .field {
	/* height: 50px; */
	position: relative;
	width: 100%;
	margin-top: 15px;
}

.form-inner form .field input {
	padding: 0.7rem;
	/* height: 100%; */
	width: 100%;
	outline: none;
	padding-left: 55px;
	border-radius: var(--borderR);
	/* border: 1px solid lightgrey; */
	border-bottom-width: 2px;
	font-size: 17px;
	transition: all 0.3s ease;
	color: var(--input-placeholder-color);
}

.form-inner form .field input:focus-within + .input-icon{
	border-color: #1a75ff;
	color: #1a75ff;
	/* box-shadow: inset 0 0 3px #fb6aae; */
}

.form-inner form .field input::placeholder {
	color: var(--input-placeholder-color);
	transition: all 0.3s ease;
}

form .field input:focus::placeholder {
	color: #1a75ff;
}

.form-inner form .pass-link {
	margin-top: 5px;
}

.form-inner form .signup-link {
	text-align: center;
	margin-top: 10px;
}

.form-inner form .pass-link a,
.form-inner form .signup-link a {
	color: #1a75ff;
	text-decoration: none;
}

.form-inner form .pass-link a:hover,
.form-inner form .signup-link a:hover {
	text-decoration: underline;
}

form .field-btn {
	height: 50px;
	width: 100%;
	border-radius: var(--borderR);
	position: relative;
	overflow: hidden;
}

form .field-btn .btn-layer {
	height: 100%;
	width: 300%;
	position: absolute;
	left: -100%;
	background: -webkit-linear-gradient(right, #003366, #004080, #0059b3, #0073e6);
	border-radius: var(--borderR);	
	transition: all 0.4s ease;
}

form .field-btn:hover .btn-layer {
	left: 0;
}

form .field-btn input[type="submit"] {
	/* height: 100%; */
	width: 100%;
	z-index: 1;
	position: relative;
	background: none;
	border: none;
	color: #fff;
	padding-left: 0;
	border-radius: var(--borderR);
	font-size: 20px;
	font-weight: 500;
	cursor: pointer;
}

.form-style {
	/* padding: 13px 20px 13px 55px; */
	/* padding-left: 55px; */
	height: 48px;
	width: 100%;
	font-weight: 500;
	border-radius: 4px;
	font-size: 14px;
	line-height: 22px;
	letter-spacing: 0.5px;
	outline: none;
	color: #c4c3ca;
	background-color: var(--bgColor);
	border: none;
	-webkit-transition: all 200ms linear;
	transition: all 200ms linear;
	/* box-shadow: 0 4px 8px 0 rgba(21, 21, 21, .2); */
}

.form-style:focus,
.form-style:active {
	border: none;
	outline: none;
	box-shadow: 0 4px 8px 0 rgba(21, 21, 21, .2);
}

.input-icon {
	position: absolute;
	top: 0;
	left: 18px;
	height: 48px;
	font-size: 24px;
	line-height: 48px;
	text-align: left;
	color: #999;
	-webkit-transition: all 200ms linear;
	transition: all 200ms linear;
	color: var(--input-placeholder-color);
}

.wrapper .user-type-box {
	position: relative;
	display: flex;
	/* height: 50px; */
	width: 100%;
	overflow: hidden;
	/* margin: 30px 0 10px 0; */
	justify-content: space-between;
	border: 1px solid var(--bgColor);
	border-radius: var(--borderR);
	margin-top: 2rem;
}

.user-type-box .slide {
	height: 100%;
	width: 100%;
	color: #fff;
	font-size: 18px;
	font-weight: 500;
	text-align: center;
	/* line-height: 48px; */
	cursor: pointer;
	z-index: 1;
	transition: all 0.6s ease;
}


.user-type-box label.student {
	/* color: var(--textColor); */
	/* color: #1a75ff; */
}

.user-type-box .slider-tab {
	position: absolute;
	height: 100%;
	width: 50%;
	left: 0;
	z-index: 0;
	border-radius: var(--borderR);
	/* background: -webkit-linear-gradient(left, #003366, #004080, #0059b3, #0073e6); */
	/* background: -webkit-linear-gradient(left, grey, var(--bgColor)); */
	background-color: var(--bgColor);
	transition: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

#student:checked~.slider-tab {
	left: 50%;
}

#student:checked~label.student {
	color: #1a75ff;
	cursor: default;
	user-select: none;
}

#student:checked~label.teacher {
	color: var(--textColor);
}

#teacher:checked~label.student {
	color: var(--textColor);
}

#teacher:checked~label.teacher {
	color: #1a75ff;
	cursor: default;
	user-select: none;
}

/* demp providers button */
.demo-box a:hover{
	background-color: var(--bgColor);
}

.demo-box a:active{
	background-color: var(--fgColor);
}
/* ends here */