*
{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

body
{
    min-height: 100vh;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
}

.form-container
{
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1rem
}

.form-box
{
    z-index: 999;
    background: #fff;
    box-shadow: 0 5px 25px rgb(0 0 0 /15%);
    width: 350px;
    padding: 50px 40px;
    border-radius: 5px;
    overflow: hidden;
}

 h2{
    font-size: 2em;
    margin-bottom: 40px;
    font-weight: 700;
    font-family: 'Merriweather';
}

.field
{
    display: flex;
    justify-content: center;
    align-items: center;
    border-bottom: 2px solid #eee;
    margin-bottom: 25px;
}
.field.active
{
    border-bottom: 2px solid var(--primary);
    transition: all 0.3s ease;
}
.field input
{
    border: none;
    outline: none;
    background: none;
    width: 100%;
    font-size: 1em;
    padding-bottom: 5px;
}

 .field i{
    color: #828da0;
    font-size: 1.3em;
    margin-right: 10px;
    padding-bottom: 5px;

}

.field.active i{
    color:  var(--primary);
    transition: all 0.3s ease;
}

::placeholder
{
    color: #828da0;
    font-size: 0.85em;
}

.eye-btn
{
    cursor: pointer;
}

.eye-btn i:hover
{
    color: var(--primary);
    transition: all 0.3s ease;
}

.forgot-link
{
    /* text-align: center; */
    transform: translateY(-10px);
    cursor: pointer;
}

.forgot-link a{
    color: var(--primary) !important;
    font-size: 0.8em;
    text-decoration: none;
    font-weight: 500;
}
#vanish.live 
{
    /* filter: blur(20px); */
    display: none;
    pointer-events: none;
    user-select: none;
}
/* popup */
#popup
{
    position: fixed;
    top: -100%;
    left: 50%;
    transform: translate(-50%,-50%);
    z-index: 1000;
    background: var(--ash);
    width: 450px;
    padding: 80px 50px 50px;
    border-radius: 5px;
    
    box-shadow: 0 15px 30px rgb(70, 70, 71) !important;
    visibility: hidden;
    transition: 1s;
}
.reset-box
{
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    z-index: 1000;
    background: var(--ash);
    width: 450px;
    padding: 80px 50px 50px;
    border-radius: 5px;
    
    box-shadow: 0 15px 30px rgb(70, 70, 71) !important;
}
#popup.live{
    
    visibility: visible;
    top: 50%;
}
#popup .field.active i{
    color: var(--secondary);
}
#popup .field.active
{
    border-bottom: 2px solid var(--secondary);
}
.content
{
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}


.close
{
    position: absolute;
    top: 30px;
    right: 30px;
    cursor: pointer;
}
.close i{
    font-size: 30px;
    color: #d53e4c;
}
.submit-btn
{
    background: var(--primary);
    color: #fff;
    border: none;
    outline: none;
    width: 120px;
    padding: 10px 30px;
    border-radius: 5px;
    font-size: 0.85em;
    font-weight: 500;
    margin-top: 5px;
    cursor: pointer;
}
.login-options
{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.login-options .text
{
    color: #828da0;
    font-size: 0.65em;
    margin: 25px 0;
}
.other-logins
{
    display: flex;
}
.other-logins a{
    border: 1px solid #ccc;
    padding: 11px 32px;
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 5px;
}
.other-logins a:hover{
    border: 1px solid var(--primary);
}
.other-logins a img
{
    width: 25px;
}

.imgBox img
{
    max-width: 270px;
}

.sliding-link
{
    display: flex;
    font-size: 0.8em;
    margin-bottom: 25px;
}

.sliding-link span{
    color: var(--primary);
    font-weight: 600;
    margin-left: 5px;
    cursor: pointer;
}

.imgBox
{
    z-index: 888;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background: #fff;
    box-shadow: 0 5px 25px rgb(0 0 0 /15%);
    height: 400px;
    padding: 15px 35px;
}


.sign-in-imgBox
{
    border-radius: 0 5px 5px 0;
}
.sign-up-imgBox
{
    border-radius: 5px 0 0 5px ;
}

.sign-in-form.hide .sign-in-box
{
    transform: translateX(100%) ;
    visibility: hidden;
}

.sign-in-form.hide .sign-in-imgBox
{
    transform: translateX(-100%) ;
    visibility: hidden;
}

.sign-in-form.show .sign-in-box,
.sign-in-form.show .sign-in-imgBox
{
    transform: translateX(0);
    visibility: visible;
    transition: 0.5s ease-in-out;
}

.sign-up-form .sign-up-box
{
    transform: translateX(-100%) ;
    visibility: hidden;
}

.sign-up-form .sign-up-imgBox
{
    transform: translateX(100%) ;
    visibility: hidden;
}

.sign-up-form.show .sign-up-imgBox,
.sign-up-form.show .sign-up-box
{
    transform: translateX(0);
    visibility: visible;
    transition: 0.5s ease-in-out;
}

/* Responsive */
@media screen and (max-width:735px) {
    .form-container
    {
        flex-direction: column;
        top: 0;
        overflow: hidden;
        padding: 30px;
    }
    .form-box
    {
        box-shadow: none;
        padding: 0;
    }
    .imgBox img 
    {
        max-width: 45%;
        min-width: 180px;
    }
    .imgBox
    {
        box-shadow: none;
        width: 100%;
        height: auto;
        padding: 35px 35px 15px;
    }

    .sign-up-form
    {
        flex-direction: column-reverse;
    }
}

@media screen and (max-width:450px)
{
    .form-container
    {
        font-size: 0.9rem;
    }
    .form-box
    {
        width: 100%;
    }
}
@media screen and (max-width:325px)
{
    .other-logins a
    {
        padding: 9px 25px;
        margin: 0 3px;
    }
}