.reg_wrapper{
    width: 360px;
    padding: 15px;
    margin: 0 auto 80px;
    box-sizing: border-box;
}
.reg_wrapper h1{
    font-weight: bold;
    font-size: 28px;
    line-height: 50px;
    color: var(--blue);
    margin-top: 0;
    margin-bottom: 15px;
    text-align: center;
}
.forget-page .reg_wrapper h1{
    line-height: 34px;
    margin-bottom: 30px;
}
.reg_wrapper h1 + small{
    font-weight: 500;
    font-size: 18px;
    line-height: 20px;
    color: var(--dark-blue);
    margin-bottom: 30px;
    display: block;
    text-align: center;
}
.reg_wrapper input:not([type="checkbox"]):not([type="radio"]):not([type="submit"]):not([type="button"]){
    background: #FFFFFF;
    border: 1px solid var(--light-blue);
    border-radius: 6px;
    box-shadow: none;
    height: 48px;
    font-weight: 500;
    font-size: 18px;
    line-height: 24px;
    color: var(--dark-blue);
    margin-bottom: 15px;
}
.reg_wrapper input:not([type="checkbox"]):not([type="radio"]):not([type="submit"]):not([type="button"]):focus{
    border-color: var(--blue);
}
.reg_wrapper input[type="button"],
.reg_wrapper input[type="submit"]{
    width: calc(50% - 5px);
}
.forget-page .reg_wrapper input[type="button"], 
.forget-page .reg_wrapper input[type="submit"] {
    width: 100%;
}
.reg_wrapper select{
    margin-bottom: 10px;
    width: 100%;
}
.link_btn{
    text-align: right;
    font-size: 16px;
    color: var(--dark-blue);
    text-decoration: underline;
    margin: 5px 0;
    display: block;
    font-weight: 500;
}
.checkbox > label > .link_btn{
    display: inline-block;
    text-align: right;
    font-size: 15px;
    color: var(--blue);
    font-weight: 500;
}
.btn_wr{
    margin-top: 30px;
    display: flex;
    justify-content: space-between;
}
.pass_wr {
    position: relative;
    display: block;
}
.pass_wr input {
    padding-right: 30px !important;
    margin-bottom: 0 !important;
}
.pass_wr .toggle_passwd {
    text-align: center;
    width: 25px;
    height: 25px;
    display: block;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    right: 10px;
    z-index: 10;
    cursor: pointer;
}
.pass_wr .toggle_passwd > i {
    display: inline-block;
    vertical-align: middle;
    font-size: 22px;
    color:  var(--grey);
}
.blue_btn_rq.hover {
    background: var(--blue);
    border-color: var(--blue);
    color: #fff;
}
.pass_wr {
    position: relative;
    display: block;
}
.pass_wr input {
    padding-right: 30px !important;
    margin-bottom: 0 !important;
}
.pass_wr .toggle_passwd {
    text-align: center;
    width: 25px;
    height: 25px;
    display: block;
    position: absolute;
    top: 25px;
    right: 10px;
    z-index: 10;
    cursor: pointer;
}
.pass_wr .toggle_passwd > i {
    display: inline-block;
    vertical-align: middle;
    font-size: 22px;
    color:  var(--grey);
}
.pass_wr .toggle_passwd.success > i{
    color: var(--green);
}
.pass_wr .toggle_passwd.error > i{
    color: var(--red);
}
.pass_wr .err-txt{
    display: none;
    font-size: 12px;
    color: var(--red);
    font-weight: 500;
}
buttoninput[disabled],
input[disabled]{
    opacity: 0.6;
    cursor: not-allowed !important;
}
@media (max-width: 767px){
    .reg_wrapper{
        width: 290px;
        margin: 0 auto 30px;
    }
}
