:root {
	/* COLORS */
	--white: #e9e9e9;
	--gray: #333;
	--blue: #3B5D4F;
	--lightblue: #3B5D4F;

	/* RADII */
	--button-radius: 0.7rem;

	/* SIZES */
	--max-width: 1000px;
	--max-height: 600px;

	font-size: 16px;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen,
		Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
}

.sign {
	align-items: center;
	background-color: var(--white);
	background: url("../img/load10.jpg");
	background-attachment: fixed;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	display: grid;
	height: 92vh;
	place-items: center;
}

.form__title {
	font-weight: 300;
	margin: 0;
	margin-bottom: 1.25rem;
}

.link {
	color: var(--gray);
	font-size: 0.9rem;
	margin: 1.5rem 0;
	text-decoration: none;
}

.containersign {
	background-color: var(--white);
	border-radius: var(--button-radius);
	box-shadow: 0 0.9rem 1.7rem rgba(0, 0, 0, 0.25),
		0 0.7rem 0.7rem rgba(0, 0, 0, 0.22);
	height: var(--max-height);
	max-width: var(--max-width);
	overflow: hidden;
	position: relative;
	width: 100%;
}

.container__form {
	height: 100%;
	position: absolute;
	top: 0;
	transition: all 0.6s ease-in-out;
}

.container--signin {
	left: 0;
	width: 50%;
	z-index: 2;
}

.containersign.right-panel-active .container--signin {
	transform: translateX(100%);
}

.container--signup {
	left: 0;
	opacity: 0;
	width: 50%;
	z-index: 1;
}

.containersign.right-panel-active .container--signup {
	background-color: #e9e9e9;
	animation: show 0.6s;
	opacity: 1;
	transform: translateX(100%);
	z-index: 5;
	
}

.container__overlay {
	height: 100%;
	left: 50%;
	overflow: hidden;
	position: absolute;
	top: 0;
	transition: transform 0.6s ease-in-out;
	width: 50%;
	z-index: 100;
}

.containersign.right-panel-active .container__overlay {
	transform: translateX(-100%);
}

.overlay {
	background-color: var(--lightblue);
	background: url("../img/load10.jpg");
	background-attachment: fixed;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	height: 100%;
	left: -100%;
	position: relative;
	transform: translateX(0);
	transition: transform 0.6s ease-in-out;
	width: 200%;
}

.containersign.right-panel-active .overlay {
	transform: translateX(50%);
}

.overlay__panel {
	align-items: center;
	display: flex;
	flex-direction: column;
	height: 100%;
	justify-content: center;
	position: absolute;
	text-align: center;
	top: 0;
	transform: translateX(0);
	transition: transform 0.6s ease-in-out;
	width: 50%;
}



.container.right-panel-active .overlay--left {
	transform: translateX(0);
}

.overlay--right {
	right: 0;
	transform: translateX(0);
}

.container.right-panel-active .overlay--right {
	transform: translateX(20%);
}

.btnsign {
	background-color: var(--blue);
	background-image: linear-gradient(90deg, var(--blue) 0%, var(--lightblue) 74%);
	border-radius: 20px;
	border: 1px solid var(--blue);
	color: var(--white);
	cursor: pointer;
	font-size: 0.8rem;
	font-weight: bold;
	letter-spacing: 0.1rem;
	padding: 0.9rem 4rem;
	text-transform: uppercase;
	transition: transform 80ms ease-in;
}

.form > .btnsign {
	margin-top: 1.5rem;
}

.btnsign:active {
	transform: scale(0.95);
}

.btnsign:focus {
	outline: none;
}

.form {
	background-color: var(--white);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	padding: 0 1rem;
	height: 100%;
	text-align: center;
}
.form1 {
	background-color: var(--white);
    display: flex;
    flex-direction: column;
    padding: 0 1rem;
    height: 100%;
    text-align: center;
	align-items: center;
}

.input {
	background-color: #fff;
	border: none;
	padding: 0.9rem 0.9rem;
	margin: 0.5rem 0;
	width: 100%;
}
.sum-color{
	color:#3B5D4F;
	font-weight: 700;
}
@keyframes show {
	0%,
	49.99% {
		opacity: 0;
		z-index: 1;
	}

	50%,
	100% {
		opacity: 1;
		z-index: 5;
	}
}
@media (max-width: 683px) {
	:root{
		--max-width: 600px;
		--max-height: 1500px;
    }
	.containersign {
		width: 95%;
		height: 100%;
	}
	.container--signin {		
		height: 70%;
		width: 100%;	
	}
	.container--signup {
		height: 70%;
		width: 100%;
	}
	.containersign.right-panel-active .container--signin {
		transform: translateY(100%);
		
	}
	.containersign.right-panel-active .container--signup {
		overflow: overlay;
		transform: translateY(45%);	
		
	}
	.container__overlay {
		height: 30%;
		left: 0;
		top: 30%;
		width: 100%;
		transform: translateY(135%);
		
	}
	.containersign.right-panel-active .container__overlay {
		transform: translateY(-100%);
		
	}
	.overlay {
		height: 200%;
		left: auto;
		top: -100%;	
		transform: translateY(0);
		width: 100%;
	}
	.containersign.right-panel-active .overlay {
		transform: translateY(50%);
		
	}
	.overlay__panel {
		height: 50%;
		transform: translateY(0);
		
		width: 100%;
	}
	.container.right-panel-active .overlay--left {
		transform: translateY(0);
		
	}
	
	.overlay--right {
		bottom: 0;
		right: auto;
		transform: translateY(100%);
		
	}
	
	.container.right-panel-active .overlay--right {
		transform: translateY(20%);
		
	}
	.errp {
		font-size: 11.5px;
	}
	.info {
		display: none!important;
	}
	.stepcont {
		padding: 10px 10px!important;
	}
	.visualindexbef {
		top: 35px!important;
	}
	.visualindexaf {
		top: 35px!important;
	}
	.gender-marg{
		margin-bottom: 20px;
	}
           
}
