@import url('https://fonts.googleapis.com/css?family=Poppins:200,300,400,500,600,700,800,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Satisfy&display=swap');

*
{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}
body
{
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background: #00c9a7;
    transition: 0.5s;
}
body.active
{
    background: #03a9f4;
}
header{
    padding: 0px;
    position: absolute;
    z-index: 999;
    top: 20px;
}
header h1{
    font-size: 50px;
    color: #fff;

}
header .divider{
    display:block;
    width:75px;
    height:3px;
    margin-left: 335px;
    /* margin-top:19px; */
    /* margin-bottom:21px; */
    background-color:#0e1213;
}
footer{
    padding: 0px;
    position: absolute;
    z-index: 999;
    bottom: 40px;
    /* justify-content: center; */
    /* align-items: center; */
    text-align: center;
}
footer h1{
    font-size: 35px;
    color: #fff;
}
footer p{
    font-size: 15px;
    color: #fff;
}
.container
{
    position: relative;
    width: 800px;
    height: 500px;
    margin: 20px;
    /* background: #ff0; */
}
/* .container h1{
    margin: 0 0 10px 40px;
} */
.blueBg
{
    position: absolute;
    top: 40px;
    width: 100%;
    height: 420px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 5px 45px rgba(0, 0, 0, 0.15);
}
.blueBg .box
{
    position: relative;
    width: 50%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.blueBg .signin h2
{
    color: #fff;
    /* font-family: 'Satisfy', cursive; */
    font-size: 30px;
    font-weight: 600;
    margin-bottom: 10px;
    text-shadow: 0 0 10px #00c9a7;
    text-align: center;
}

.blueBg .signup h2
{
    color: #fff;
    /* font-family: 'Satisfy', cursive; */
    font-size: 30px;
    font-weight: 600;
    margin-bottom: 10px;
    text-shadow: 0 0 10px #03a9f4;
    text-align: center;
}
.blueBg .signin button
{
    cursor: pointer;
    padding: 10px 20px;
    background: #fff;
    color: #333;
    font-size: 16px;
    font-weight: 500;
    border: 1px solid #333;
    border-radius: 5px;
}
.blueBg .signin button:hover{
    color: #00c9a7;
    border: #00c9a7 1px solid;
    box-shadow: 0 0px 4px #00c9a7;
}
.blueBg .signup button
{
    cursor: pointer;
    padding: 10px 20px;
    background: #fff;
    color: #333;
    font-size: 16px;
    font-weight: 500;
    border: 1px solid #333;
    border-radius: 5px;
}
.blueBg .signup button:hover{
    color: #03a9f4;
    border: #03a9f4 1px solid;
    box-shadow: 0 0px 4px #03a9f4;
}
.formBox
{
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    background: #fff;
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 5px 45px rgba(0, 0, blue, alpha);
    transition: 0.5s ease-in-out;
    overflow: hidden;
}
.formBox.active
{
    left: 50%;
}

.formBox .form
{
    position: absolute;
    left: 0;
    width: 100%;
    /* padding: 50px; */
    transition: 0.5s;
}

  
/* .formBox .signupForm .button{
    font-size:18px;
    text-decoration:none;
    color:#926239;
    border:#926239 1px solid;
    padding:10px 20px;
    border-radius:10px;
    margin-top:20px;
}
  
.formBox .signupForm .button:hover{
    background:#926239;
    color:#fff;
} */

.formBox .signinForm
{
    transition-delay: 0.25s;
}

.formBox.active .signinForm
{
    left: -100%;
    transition-delay: 0s;
}

.formBox .signupForm
{
    left: 100%;
    transition-delay: 0s;
}

.formBox.active .signupForm
{
    left: 0;
    transition-delay: 0.25s;
}

.formBox .form img
{
    width: 100%;
    height: 500px;
    display: flex;
    flex-direction: column;
}

#logo{
    position: absolute;
    left: 115px;
    top: 0;
    width: 175px;
    height: 63px;
}

.formBox .form .centered {
    position: absolute; /* Position the background text */
    bottom: 0; /* At the bottom. Use top:0 to append it to the top */
    background: rgb(0, 0, 0); /* Fallback color */
    background: rgba(0, 0, 0, 0.5); /* Black background with 0.5 opacity */
    color: #f1f1f1; /* Grey text */
    width: 100%; /* Full width */
    padding: 20px; /* Some padding */
    text-align: center;
}

.formBox .form .centered a{
    font-size: 18px;
    text-decoration: none;
    color: #fff;
    border: #fff 1px solid;
    padding: 10px 20px;
    border-radius: 10px;
    margin-top: 20px;
}

/* .formBox .form a{
    text-decoration: none;
} */

.formBox .signupForm a:hover{
    color: #03a9f4;
    border: #03a9f4 1px solid;
}

.formBox .signinForm a:hover{
    color: #00c9a7;
    border: #00c9a7 1px solid;
}

.formBox .form form h3
{
    font-size: 1.5em;
    color: #333;
    margin-bottom: 20px;
    font-weight: 500;
}

.formBox .form form input
{
    width: 100%;
    margin-bottom: 20px;
    padding: 10px;
    outline: none;
    font-size: 16px;
    border: 1px solid #333;
}

.formBox .form form input[type="submit"]
{
    background: #00c9a7;
    border: none;
    color: #fff;
    max-width: 100px;
    cursor: pointer;
}

.formBox.active .signupForm input[type="submit"]
{
    background: #03a9f4;
}

.formBox .form form .forgot
{
    color: #333;
}


@media (max-width: 991px)
{
    header h1{
        font-size: 24px;
    }
    header .divider{
        display: block;
        width: 75px;
        height: 3px;
        margin-left: 140px;
        background-color: #0e1213;
    }
    .blueBg .signup h2{
        font-size: 25px;
    }
    .blueBg .signin h2{
        font-size: 25px;
    }
    footer{
        bottom: -160px;
    }
    .container
    {
        max-width: 400px;
        height: 650px;
        display: flex;
        justify-content: center;
        align-items: center;
        top: 50px;
    }
    .container .blueBg
    {
        top: 0;
        height: 100%;
    }
    .formBox
    {
        width: 100%;
        height: 500px;
        top: 0;
        /* display: none; */
        box-shadow: none;
    }
    .blueBg .box
    {
        position: absolute;
        width: 100%;
        height: 150px;
        bottom: 0;
    }
    .box.signin
    {
        top: 0;
    }
    .formBox.active
    {
        left: 0;
        top: 150px;
    }
}