body
{
    height: 100vh;
    width: 80vw;
    margin:0;
    padding: 0;
    box-sizing: border-box;
    overflow-y: hidden;
    overflow-x: hidden;
}
.sec
{
    background: #3AB19B;
    width: 35%;
    position: absolute;
    left:65%;
    height: 100%;
    color: white;
    text-align: center;
    z-index: 2;
}

.head h1
{
    color: #3AB19B;
    text-align: center;
    font-weight: bolder;
    font-size: 2.2em;
}
.head ul
{
    position: relative;
    float: left;
    text-align: center;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    margin: 0 !important;
    padding: 0 !important;
}
.head ul li
{
    color: black;
    float: left;
    list-style: none;
    margin: 12px 15px;
    font-size: 1.5em;
    
}
.head h3
{
    color: grey;
    text-align: center;
    width: 100%;
    float: left;
    margin: 0 !important;
    padding: 0 !important;
}
.login
{
    position: absolute;
    width: 65%;
    height: 100%;
}
.textbox
{
    box-sizing: border-box;
    position: relative;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    padding: 0em 4em;
}
form
{
    width: 50%;
    position: relative;
    margin: 0 auto
}
form input
{
    position: relative;
    margin: 9px auto;
    border: none;
    font-size: 1.2em;
    padding: 1em 1.3em;
    background: #eae7e7;
    border-radius: 6px;
    width: 100%;
}
form button
{
    width: 70%;
    position: relative;
    color: white;
    background: #3AB19B;
    border: none;
    font-size: 1em;
    padding: 1.3em 2em;
    border-radius: 30px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    margin: 3em 0em;
}
.sec h1
{
    font-size: 2.2em;

}
.sec p
{   
    width: 60%;
    margin: 0 auto;
    font-size: 1.2em;
    margin-bottom: 1em;
}
.sec button
{
    box-sizing: border-box;
    border: 2px solid white;
    color: white;
    background: no-repeat;
    padding: 0.9em 2em;
    font-size: 1.2em;
    border-radius: 40px;
    font-weight: bolder;
}
form a
{
    color: black;
    text-decoration: none;
    font-size: 1.3em;
    border-bottom: 1px solid black;
    text-align: center;
    margin: 2em;
}
#b
{
    background: none;
    padding: 0;
    margin: 1em auto;
    width: 100%;
    font-size: 0.9em;
}

.slide-left 
{
    animation: slide-left 0.9s;
    transition-timing-function:ease-in-out;
    animation-fill-mode: forwards;
}

@keyframes slide-left
{
    from
    {
        margin-left: 100%;
        width: 100%;
    }
    to 
    {
        margin-left: 0%;
        width: 100%;
    }
}
.slide-right
{
    animation: slide-right .4s;
    transition-timing-function:ease-in-out;
    animation-fill-mode: forwards;
}
@keyframes slide-right
{
    from 
    {
        left: 0%;
    }
    to 
    {
        left: 50%;
    }
}
.slide-left2
{
    animation: slide-left2 .4s;
    transition-timing-function:ease-in-out;
    animation-fill-mode: forwards;
}
@keyframes slide-left2 
{
    from
    {
        left: 100%;
    }
    to 
    {
        left: 50%;
    }
}
.movel
{
    animation: movel 1.2s;
    transition-timing-function: ease-in-out;
    animation-fill-mode: forwards;
}
@keyframes movel
{
    from
    {
        left:65%;
    }
    to
    {
        left:0;
    }
}
.mover
{
    animation: mover 1.2s;
    transition-timing-function: ease-in-out;
    animation-fill-mode: forwards;
}
@keyframes mover
{
    from
    {
        left: 0%;
    }
    to
    {
        left: 35%;
    }
}
.hide
{
    display: none;
}
.show
{
    display: block;
}
.mover2
{
    animation: mover2 1.2s;
    transition-timing-function: ease-in-out;
    animation-fill-mode: forwards;
}
@keyframes mover2
{
    0%{left:0;width: 35%;}
    50%{width: 40%;}
    100%{left:65%;width: 35%;}
}

.movel2
{
    animation: movel2 1.2s;
    transition-timing-function: ease-in-out;
    animation-fill-mode: forwards;
}
@keyframes movel2
{
    0%{left:65%;width: 35%;}
    50%{width: 40%;}
    100%{left: 0;width: 35%;}
}