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, #FF6600, #FF6600, #FF6600);
}

.input-group-append, .input-group-prepend {
    display: flex;
}

#fpass{
    text-align: center;
    font-size: 14px;
    text-decoration: none;
    color: rgb(106 101 101);
}

#fpass:hover{
    text-decoration: none;
    color: #FF6600;
    transition: ease-out .3s;
}

.main{
    width: 350px;
    height: auto;
    /* background: red; */
    overflow: hidden;
    background: linear-gradient(to bottom, #FFFFFF, #FFFFFF, #FFFFFF);

    border-radius: 10px;
    box-shadow: 5px 20px 50px #000;
    padding-bottom: 20px;
}

.alert{
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    
}

.alert-danger{
    background-color: rgba(242,216,217,255);
    border-color: rgba(242,216,217,255);
    box-shadow: 5px 10px 20px #4d0c0c;
}

.alert-warning{
    background-color: rgba(253,243,208,255);
    border-color: rgba(253,243,208,255);
    box-shadow: 5px 10px 20px #535044;
}

#chk{
    display:none;
}

.login{
    position: relative;
    width: 100%;
    height: 100%;
}

label{
    color: white;
    font-size: 2.3em;
    justify-content: center;
    display: flex;
    margin: 60px;
    margin-bottom: 40px;
    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: #d26600;
    font-size: 1em;
    font-weight: bold;
    margin-top: 20px;
    border: none;
    outline: none;
    border-radius: 5px;
    transition: .2s ease-in;
    cursor: pointer;
}

button:hover{
    background: #FF6600;
}

.signup{
    height: 460px;
    background: #eee;
    border-radius: 60% / 10%;
    transform: translateY(-180px);
    transition: .8s ease-in-out;
}

.signup label{
    color: #573b8a;
    transform: scale(.6);
}

#chk:checked ~ .signup{
    transform: translateY(-500px);
}

#chk:checked ~ .signup label{
    transform: scale(1);
}

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

.d-none{
    display:none;
}

.g-recaptcha{
    display: flex;
    justify-content: center;
    margin-top: 20px;
    margin-bottom: 20px;
}

