.auth_wrapper{
    text-align: center;
    padding: 15px;
    padding-top: 5%;
    position: relative;
    z-index: 1;
}

.auth_header_logo{
    margin-bottom: 30px;
}
.auth_header_logo svg{
    width: 150px;
    height: auto;
}
.auth_box{
    max-width: 410px;
    margin: 0 auto;
}
.auth_box h3{
    font-size: 24px;
    font-weight: 700;
    margin: 0;
    margin-bottom: 4px;
}
.auth_box p{
    font-size: 14px;
    font-weight: 400;
    margin: 0;
    margin-bottom: 30px;
}
.auth_box h3 span{
    color: var(--main-color);
}

.auth_input_wrapper{
    margin-bottom: 15px;
    position: relative;
}
.auth_input_wrapper > .auth_input{
    background-color: #ffffff;
    box-shadow: 0px 12px 24px 0px rgba(177, 193, 224, 0.1);
    height: 67px;
    border-radius: 10px;
    border: none;
    outline: none;
    width: 100%;
    padding: 0 40px;
    font-size: 14px;
    font-weight: 500;   
    line-height: 67px;
    color: var(--body-color);
}
.pu_auth_icon{
    position: absolute;
    top: 20px;
    right: 18px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}
.pu_auth_showhide_password{
    
}
.auth_input_wrapper > .auth_input::-webkit-input-placeholder{
    color: #c7cbe1;
}

.auth_forgotremember{
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 25px auto;
}
.auth_forgotremember a{
    color: #9aa4cc;
}

.auth_footer{
    margin-top: 30px;
    font-size: 16px;
    font-weight: 500;
}
.auth_footer a{
    color: var(--main-color);
    text-decoration: underline;
}

.auth_bg{
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    z-index: 0;
}
.auth_bg_circle{
    border-radius: 100%;
    position: absolute;
    width: 509px;
    height: 509px;
    opacity: 0.18;
    filter: blur(260px);
}
.auth_bg_circle_1{
    top: -10%;
    right: -10%;
    background-image: -moz-linear-gradient( 90deg, rgb(79,172,254) 0%, rgb(0,242,254) 100%);
    background-image: -webkit-linear-gradient( 90deg, rgb(79,172,254) 0%, rgb(0,242,254) 100%);
    background-image: -ms-linear-gradient( 90deg, rgb(79,172,254) 0%, rgb(0,242,254) 100%);
    background-image: linear-gradient( 90deg, rgb(79,172,254) 0%, rgb(0,242,254) 100%);
}
.auth_bg_circle_2{
    top: -10%;
    left: -10%;
    background-image: -moz-linear-gradient( 90deg, rgb(237,27,60) 0%, rgb(255,109,123) 100%);
    background-image: -webkit-linear-gradient( 90deg, rgb(237,27,60) 0%, rgb(255,109,123) 100%);
    background-image: -ms-linear-gradient( 90deg, rgb(237,27,60) 0%, rgb(255,109,123) 100%);
    background-image: linear-gradient( 90deg, rgb(237,27,60) 0%, rgb(255,109,123) 100%);
}
.auth_bg_circle_3{
    bottom: -10%;
    left: -10%;
    background-image: -moz-linear-gradient( 90deg, rgb(84,40,254) 0%, rgb(217,46,255) 100%);
    background-image: -webkit-linear-gradient( 90deg, rgb(84,40,254) 0%, rgb(217,46,255) 100%);
    background-image: -ms-linear-gradient( 90deg, rgb(84,40,254) 0%, rgb(217,46,255) 100%);
    background-image: linear-gradient( 90deg, rgb(84,40,254) 0%, rgb(217,46,255) 100%);
}
  
  