body{
	margin: 0;
	padding: 0;
	display: flex;
	justify-content: center;
	align-items: center;
	height: 101vh;
	font-family: 'Jost', sans-serif;
	background: linear-gradient(to bottom, #0f0c29, #302b63, #24243e);
}
.main{
	width: 100%;
	height: 100%;
	overflow: hidden;
}
#chk{
	display: none;
}
.signup{
	position: relative;
	width:100%;
	height: 100%;
}
label{
	color: #fff;
	font-size: 2.3em;
	justify-content: center;
	display: flex;
	margin: 60px 60px 35px 60px;
	font-weight: bold;
	cursor: pointer;
	transition: .5s ease-in-out;
}
input{
	width: 60%;
	height: 20px;
	background: #e0dede;
	justify-content: center;
	display: flex;
	margin: 8px auto;
	padding: 10px;
	border: none;
	outline: none;
	border-radius: 5px;
}
button{
	width: 60%;
	height: 40px;
	margin: 10px auto;
	justify-content: center;
	display: block;
	color: #fff;
	background: #573b8a;
	font-size: 1em;
	font-weight: bold;
	margin-top: 20px;
	outline: none;
	border: none;
	border-radius: 5px;
	transition: .2s ease-in;
	cursor: pointer;
}
button:hover{
	background: #6d44b8;
}
.login{
	height: 590px;
	background: #eee;
	border-radius: 60% / 10%;
	transform: translateY(-180px);
	transition: .8s ease-in-out;
}
.login label{
	color: #573b8a;
	transform: scale(.5);
}

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

.date {
    font-weight: 600;
	justify-content: center;
	color: #e0dede;
	display: flex;
}

.confetti-container {
	user-select: none;
	z-index: 10;
  }
  .confetti {
	position: fixed;
	left: 0;
	right: 0;
	display: flex;
	/* width: 600px; */
	/* height: 600px; */
	/* overflow: hidden; */
  }
  
  .confetti .square {
	width: 1rem;
	height: 1rem;
	background-color: var(--bg);
	transform: rotate(-140deg);
  }
  
  .confetti .rectangle {
	width: 1rem;
	height: 0.5rem;
	background-color: var(--bg);
  }
  
  .confetti .hexagram {
	width: 0;
	height: 0;
	border-left: 0.5rem solid transparent;
	border-right: 0.5rem solid transparent;
	border-bottom: 1rem solid var(--bg);
	position: relative;
  }
  
  .confetti .hexagram:after {
	content: "";
	width: 0;
	height: 0;
	border-left: 0.5rem solid transparent;
	border-right: 0.5rem solid transparent;
	border-top: 1rem solid var(--bg);
	position: absolute;
	top: 0.33rem;
	left: -0.5rem;
  }
  
  .confetti .pentagram {
	width: 0rem;
	height: 0rem;
	display: block;
	margin: 0.5rem 0;
	border-right: 1rem solid transparent;
	border-bottom: 0.7rem solid var(--bg);
	border-left: 1rem solid transparent;
	transform: rotate(35deg);
	position: relative;
  }
  .confetti .pentagram:before {
	content: "";
	width: 0;
	height: 0;
	display: block;
	border-bottom: 0.8rem solid var(--bg);
	border-left: 0.3rem solid transparent;
	border-right: 0.3rem solid transparent;
	transform: rotate(-35deg);
	position: absolute;
	top: -0.45rem;
	left: -0.65rem;
  }
  .confetti .pentagram:after {
	content: "";
	width: 0rem;
	height: 0rem;
	display: block;
	border-right: 1rem solid transparent;
	border-bottom: 0.7rem solid var(--bg);
	border-left: 1rem solid transparent;
	transform: rotate(-70deg);
	position: absolute;
	top: 0.03rem;
	left: -1.05rem;
  }
  
  .confetti .dodecagram {
	background: var(--bg);
	width: 0.8rem;
	height: 0.8rem;
	position: relative;
  }
  
  .confetti .dodecagram:before {
	content: "";
	height: 0.8rem;
	width: 0.8rem;
	background: var(--bg);
	transform: rotate(30deg);
	position: absolute;
	top: 0;
	left: 0;
  }
  .confetti .dodecagram:after {
	content: "";
	height: 0.8rem;
	width: 0.8rem;
	background: var(--bg);
	transform: rotate(60deg);
	position: absolute;
	top: 0;
	left: 0;
  }
  
  .confetti .wavy-line {
	position: relative;
  }
  .confetti .wavy-line::after,
  .confetti .wavy-line::before {
	content: "";
	height: 1rem;
	width: 8rem;
	background-size: 2rem 1rem;
	position: absolute;
	left: -9rem;
	transform: rotate(90deg);
  }
  
  .confetti .wavy-line::before {
	background-image: linear-gradient(
	  45deg,
	  transparent,
	  transparent 50%,
	  var(--bg) 50%,
	  transparent 60%
	);
	top: 1rem;
  }
  .confetti .wavy-line::after {
	background-image: linear-gradient(
	  -45deg,
	  transparent,
	  transparent 50%,
	  var(--bg) 50%,
	  transparent 60%
	);
  }
  
  .confetti i {
	width: 3rem;
	height: 3rem;
	margin: 0 0.2rem;
	animation-name: confetti;
	animation-timing-function: linear;
	animation-iteration-count: infinite;
	animation-duration: calc(70s / var(--speed));
  }
  
  .confetti i:nth-child(even) {
	transform: rotate(90deg);
  }
  
  @keyframes confetti {
	0% {
	  transform: translateY(-100vh);
	}
  
	100% {
	  transform: translateY(100vh);
	}
  }