:root{
    --dark-blue: #02294E;
    --blue: #053764;
    --light-blue: #F7F9FA;
    --pastel-blue: #EBEFF3;
    --orange: #FC8602;
    --light-orange: #F5F0EB;
    --gray: #757272;
}

.form-section{
    padding: 60px 0;
}

@media screen and (max-width: 991px) {
    .form-section{
        padding-top: 120px;
    }
}

.form-container{
    background-color: #fff;
    max-width: 500px;
    width: 95%;
    border-radius: 7px;
    padding: 30px 20px;
    margin: 0 auto;
    box-shadow: 0px 0px 12px #00000025;
    display: none;
    
}




.signup-form , .forgot-password-form{
    animation: slideIn 0.4s  1 ease-in-out;
}

@keyframes slideIn {
    0%{
     transform: translateX(200px);
     opacity: 0;
    } 
    100% {
     transform: translateX(0);
     opacity: 1;
    }
 }

.login-form{
    animation: zoomIn 0.4s   1  ease-out;
}

@keyframes zoomIn {
    0%{
        transform: scale(0);
        opacity: 0;
    }
    100%{
        transform: scale(1);
        opacity: 1;
    }
}

.link {
    font-weight: 600;
    color: var(--blue);
    cursor: pointer;
    transition: all 0.6s;
}

.link:hover{
    color: var(--orange);
}

.s-form-head{
    color: var(--blue);
    font-weight: 600;
    text-align: center;
}

.s-form-subhead{
    color: var(--blue);
    opacity: 0.8;
    font-size: 0.9rem;
    text-align: center;
}

.form-container input{
    padding: 7px;
    border-radius: 4px;
    border: 1px solid var(--gray) !important;
    width: 100%;
}

.password-container{
    position: relative;
}

.password-icon{
    position: absolute;
    top: 9px;
    right: 10px;
}

.sn-btn-wrapper{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 20px 0;
}

.forms{
    display: none;
}

.active{
    display: block;
}