body{
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    font-family: 'Jost', sans-serif;
    background: linear-gradient(to bottom, #1d1d1f, #757577, #1d1d1f);
}
.main{
    width: 350px;
    height: 500px;
    /*background: red;*/
    overflow: hidden;
    background: rgb(122, 122, 128);
    /*background: linear-gradient(180deg, rgba(122, 122, 128,1) 0%, rgb(39, 38, 44) 50%, rgb(192, 190, 209) 100%);*/
    box-shadow: 5px 5px 10px #000;
    border-radius: 15px;
}
#chk{
    display: none;
}
.signup{
    position: relative;
    width:100%;
    height: 100%;
}
label{
    color: #fff;
    font-size: 2.3em;
    justify-content: center;
    display: flex;
    margin: 60px;
    font-weight: bold;
    cursor: pointer;
    transition: .5s ease-in-out;
}
input{
    width: 60%;
    height: 20px;
    background: #e0dede;
    justify-content: center;
    display: flex;
    margin: 20px 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: #29282b;
    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: #336699;
}
.login{
    height: 460px;
    background: #eee;
    border-radius: 60% / 10%;
    transform: translateY(-180px);
    transition: .8s ease-in-out;
}
.login label{
    color: #26292c;
    transform: scale(.6);
}

#chk:checked ~ .login{
    transform: translateY(-500px);
}
#chk:checked ~ .login label{
    padding-top: 20px;
    transform: scale(1);
}
#chk:checked ~ .signup label{
    transform: scale(.6);
}
#bottom-form{
    text-align: center;
}
.version-text{
    padding-top:50px;
    text-align: center;
    font-weight: bold;
}
.alert {
    margin-left: 17%;
    width: 53%;
	padding: .75rem 1.25rem;
	margin-bottom: 1rem;
	border: 1px solid transparent;
	border-radius: .25rem
}
.alert-danger {
	color: #721c24;
	background-color: #f8d7da;
	border-color: #f5c6cb
}

.send-otp-again {
    padding-left: 20px;
    padding-top: 20px;
    padding-bottom: 30px;
    color: white;
    font-size: 11px;
    text-align: center;
    text-decoration: underline;
    cursor: pointer;
}

.back-to-login {
    padding-top: 30px;
    padding-left: 20px;
    text-align: center;
    color: white;
    font-size: 14px;
    cursor: pointer;
}

.login-wait-text {
    font-size: 14px;
    font-weight: bold;
    padding-left: 40%;
}
