body {
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    font-family: 'Jost', sans-serif;
    background-image: url('Images/background.jpg');
    max-width: 100%;
    background-size: cover;
}

.main{
	width: 350px;
	height: 500px;
	overflow: hidden;
	border-radius: 10px;
	background: #08203ee6;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
	cursor: pointer;
	transition: 0.5s;
}

.main:hover {
	transform: scale(1.1);
}
#chk{
	display: none;
}
.signup{
	position: relative;
	width:100%;
	height: 100%;
}
label{
	color: #fff;
	font-size: 2.3em;
	justify-content: center;
	display: flex;
	margin: 50px;
	font-weight: bold;
	transition: .5s ease-in-out;
}
input{
	width: 60%;
	height: 10px;
	background: #e0dede;
	justify-content: center;
	display: flex;
	margin: 20px auto;
	padding: 12px;
	border: none;
	outline: none;
	border-radius: 5px;
}
button{
	width: 60%;
	height: 40px;
	margin: 10px auto;
	justify-content: center;
	display: block;
	color: #fff;
	background: #08203e;
	font-size: 1em;
	font-weight: bold;
	margin-top: 30px;
	outline: none;
	border: solid 1px #557c93;
	border-radius: 5px;
	transition: .2s ease-in;
}

button:hover{
	color: #08203e;
	background: #eee;
	transform: scale(1.05);
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}
input:hover {
    border: 1px solid #557c93;
}

.login{
	height: 460px;
	background: #eee;
	border-radius: 60% / 10%;
	transform: translateY(-180px);
	transition: .8s ease-in-out;
}
.login label{
	color: #274c77;
	transform: scale(.6);
}
.toggle-password {
	position: absolute;
	right: 65px;
	top: 50%;
	transform: translateY(-50%);
}
.password-container {
	position: relative;
}
#set{
	padding-top: 5%;
}

#chk:checked ~ .login{
	transform: translateY(-500px);
}
#chk:checked ~ .login label{
	transform: scale(1);	
}
#chk:checked ~ .signup label{
	transform: scale(.6);
}