/* change placeholder color */
.form-control::-webkit-input-placeholder { /* Chrome/Opera/Safari */
    color: #AFAFAF;
}
.form-control::-moz-placeholder { /* Firefox 19+ */
    color: #AFAFAF;
}
.form-control:-ms-input-placeholder { /* IE 10+ */
    color: #AFAFAF;
}
.form-control:-moz-placeholder { /* Firefox 18- */
    color: #AFAFAF;
}

.auth_main{
    background: url("../images/auth/auth_bg.jpg") no-repeat;
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
    width: 100%;
    height: 100vh;
    padding: 60px 0;
    position: relative;
    display: flex;
    align-items: center;
}
.auth_main h1{
    font-size: 36px;
    font-weight: 700;
    color: #fff;
    display: block;
    text-align: center;
    margin-bottom: 24px;
}
.auth_main h5{
    font-size: 22px;
    font-weight: 600;
    color: #141415;
    display: block;
    text-align: center;
}
.auth_main p{
    font-size: 16px;    
    color: #808080;
    display: block;
    text-align: center;
}
.auth_main p b{
    font-weight: 500;
    color: #000;
}
.auth_blog form{
    display: block;
    position: relative;
    width: 100%;
    max-width: 450px;
    margin: 0 auto;
    box-shadow: 0px 24px 41px 0px #00000021;
    padding: 30px 30px;
    background: #fff;
    border-radius: 21px;
}
.input_group .form-control, .input_group .form-control:focus{
    height: auto;
    line-height: unset;
    outline: none;
    padding: 17px 20px 17px 47px;
    box-shadow: 0px 4px 9px 0px #00000012;
    border: 1px solid #00000014;
    border-radius: 20px;
    font-size: 16px;
    font-weight: 400;
    color: #141415;
}
.input_group{position: relative;}
.input_group svg{
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    margin: auto 15px;
}
.inputicon{
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    margin: auto 15px;
    color: #CFCFCF;
    display: flex;
    align-items: center;
}
.interlink{
    font-size: 15px;
    font-weight: 500;
    color: #3398DC;
}
.account_interlink span{
    color: #212121;
    font-weight: 400;
}
.account_interlink span a{font-weight: 600;}

.auth_blog form .form-group:last-child{
    margin-bottom: 0;
}
.common_btn{
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    padding: 14px 10px;
    line-height: normal;
    width: 100%;
    max-width: 198px;
    margin: auto;
    border-radius: 90px;
    background: #0A578B;
    border: 1px solid #0A578B;
    box-shadow: 3px 3px 5px 0px #D7D7D7E5;
    display: block;
    text-align: center;
    margin-bottom: 30px;
}
.common_btn:hover{
    background: transparent;
    color: #0A578B;
}
.field_filled svg path, .field_active svg path, .field_filled svg rect, .field_active svg rect {
    stroke: #0A578B;
}
.field_filled .form-control, .field_active .form-control {
    border: 1px solid #3398DC !important;
}
.field_filled i, .field_active i{
    color: #0A578B;
}
/* custom checkbox */
.custom_checkinput input {
    padding: 0;
    height: initial;
    width: initial;
    margin-bottom: 0;
    display: none;
    cursor: pointer;
}
.custom_checkinput label {
    position: relative;
    cursor: pointer;
    margin-bottom: 0;
    font-size: 16px;
    color: #545454;       
}
.custom_checkinput label:before {
    content: '';
    -webkit-appearance: none;
    background-color: #EEEEEE;
    width: 26px;
    height: 26px;
    border-radius: 8px;
    display: inline-block;
    position: relative;
    vertical-align: middle;
    cursor: pointer;
    margin-right: 10px;
}
.custom_checkinput input:checked + label:before{background: #3398DC;}
.custom_checkinput input:checked + label:after {
    content: '';
    display: block;
    position: absolute;
    top: 0px;
    left: 0px;
    width: 6px;
    height: 14px;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
    margin: 4px 10px;
}
.auth_object {
    display: block;
    text-align: center;
    margin: 1rem auto 1.5rem;
}
.resend_link{
    font-size: 18px;
    font-weight: 500;
}
.otpgrp{
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}
.otpgrp .form-control{
    width: 82px;
    height: 80px;
    padding: 10px;
    border-radius: 20px;
    text-align: center;
}