.form-control:focus {
    border-color: var(--buttonColor) !important;
    outline: 0;
    box-shadow: none !important;
}

.login_left_wrapper .email_input {
    max-width: 453px !important;
    width: 100% !important;
    height: 56px !important;
}


.welcome_div p {
    color: var(--buttonColor);
    font-family: 'Syne', sans-serif;
    font-size: 36px;
    font-weight: 600;
    line-height: 150%;
    margin-bottom: 8px !important;
}

.waving-hand {
    animation-name: wave-animation;
    animation-duration: 2.5s;
    animation-iteration-count: infinite;
    transform-origin: 70% 70%;
    display: inline-block;
  }
  
  @keyframes wave-animation {
    0% { transform: rotate( 0.0deg) }
    15% { transform: rotate(14.0deg) }  /* The following five values can be played with to make the waving more or less extreme */
    30% { transform: rotate(-8.0deg) }
    40% { transform: rotate(14.0deg) }
    50% { transform: rotate(-4.0deg) }
    60% { transform: rotate(10.0deg) }
    70% { transform: rotate( 0.0deg) }  /* Reset for the last half to pause */
   100% { transform: rotate( 0.0deg) }
  }
.welcome_div h6 {
    color: var(--textColor);
    font-family: ' Syne', sans-serif !important;
    font-size: 18px !important;
    font-style: normal !important;
    font-weight: 400 !important;
    line-height: 150%;
    margin-bottom: 25px !important;
}
.login_img{
    height: 100vh !important;
    width: 100%;
}

.backBtn {
    color: var(--buttonColor);
    font-family: ' Syne', sans-serif !important;
    font-size: 18px;
    font-weight: 500;
    line-height: 150%;
}

.login_btn {
    border-radius: 11px;
    background: var(--primaryColor);
    padding: 14px 0px;
    color: var(--initialColor);
    text-align: center;
    font-family: 'Syne', sans-serif;
    font-size: 18px;
    font-weight: 700;
    line-height: 150%;
    margin-top: 24px;
    width: 100% !important;
    transition: ease-in 0.3s;
    border: 1px solid var(--primaryColor);
}
.login_btn:hover{
    background-color: transparent;
    border: 1px solid var(--primaryColor);
    transition: ease-in 0.3s;
    color: var(--primaryColor);
}

.small_Area {
    max-width: 450px;
    width: 100%;
    margin: auto;
}

@media only screen and (max-width:768px) {
    .small_Area {
        padding: 200px 24px;
    }

    .welcome_div p {
        font-size: 28px;
    }

    .welcome_div h6 {
        font-size: 16px;
    }

    .forget {
        font-size: 13px;
    }

    .mb_56 {
        margin-bottom: 24px !important;
    }
}