body{
	margin: 0;
	padding: 0;
	min-height: 100vh;
	font-family: 'Jost', sans-serif;
	background: linear-gradient(to bottom, #41eec0, #76e7e4, #428bd4);
	display: flex;
	align-items: center;
	justify-content: center;
}
nav{
	top:0;
	height: 4rem;
	width: 100vw;
	position: fixed;
	background-color:#18b4e8;
	display: flex;
}
nav a {
	display: flex;
	margin-left: 2px;
	text-decoration: none;
	color: rgb(249, 240, 240);
	font-weight: bold;
	font-size: 30px;
	align-items: center;
} 
nav ul{
	display: flex;
	justify-content: flex-end;
	list-style: none;
	padding: 0;
	margin:0;
	margin-right: 1.5rem;
	width: 100%; 
	align-items: flex-start;
}
nav li{
	padding-left: 30px;
	margin-right: 0;
}
nav ul a{
	display: flex;
	align-items: center;
	height: 3rem;
	text-decoration: none;
	color: #f3f7f6;
	font-size: medium;
	padding-top: 10px;
}
nav ul a:hover{
	color: #0f0c29;
	font-weight: bold;
}
.main {
	width: 350px;
	height: 500px;
	text-align: center;
	background: linear-gradient(to bottom, #41eec0, #76e7e4, #428bd4);
	box-shadow: 0px 0px 30px 15px rgb(12, 240, 240);
	border-radius: 10px;
	margin-top: 80px;
	overflow: hidden;
}


#check{
	display: none;
}
  label  {
	display: flex;
	justify-content: center;
	color: white;
	font-size: 35px;
	cursor: pointer;
	transition: all ease-in-out;
	
	
}
.signin-box label{
	color: #0f0c29;
	transform: scale(.6);
}

.inputs{
	padding: 80px 80px 80px 60px;
	margin: auto;

}
input{
padding: 10px;
margin-bottom: 20px;
border-radius: 5px;
border: none;
width: 200px;
outline: none;
background-color: #e6d4f5;
}
button{
	padding: 10px;
	width: 180px;
	border-radius: 5px;
	border: none;
	background-color:#0878af ;
	color: white;
	font-size: 18px;
	margin-bottom: 50PX;
	margin-left: 8px;
}
button:hover{
	background-color: #3a51e6;
}

.signin-box {
	background-color: white;
	border-radius: 60% / 10%;
	height: 500px;
	width: 349px;
	margin-top: 80px;
	transform: translateY( -120px);
	transition: .10s ease-in-out;
}

.signin-box input{
	background-color: #e6d4f5;
	outline: none;
}


#check:checked ~ .signin-box{
	transform: translateY(-470px);
}
#check:checked ~ .signin-box label{
	transform: scale(1);
}
#check:checked ~ .singup-box label{
	transform: scale(.6);
}
@media only screen and (max-width: 600px){
	nav{
		display: inline;
		justify-content: center;
		top:0;
		height: 15rem;
	    position:absolute ;}
		nav ul{
			display: flex;
			justify-content:center;
			flex-direction: column;
			margin-left: 40vw;
		}
		nav a {
			margin-left: 5px;
			display: flex;
			justify-content: center;
		}
		.main{
			margin-top: 260px;
		}
}