img {
    max-width: 100%;
}

.header {
    text-align: center;
    padding: 25px 0;
}

.header .logo {
    margin: auto;
    width: 170px;
    margin-bottom: 10px;
}

.header .logo img {
    display: block;
}

.header h1 {
    font-size: 24px;
}

body {
    background: #f9f5ec;
}


.login_box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    background-image: url('../images/logo.png');
    background-size: 70% auto;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.08;
}

.login_box {
    border: 1px solid #e8e8e8;
    margin-top: 0;
    margin-bottom: 50px;
    padding: 30px;
    box-shadow: 0 0 15px 0 rgb(0 0 0 / 8%);
    border-radius: 5px;
    background: #FFF;
    border-bottom: 5px solid #145d93;
    position: relative;
}

.login_box .form_title {
    text-align: center;
    font-size: 24px;
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 30px;
}

.login_box .form_title:before {
    content: '';
    width: 59px;
    height: 2px;
    background: #a1cc3c;
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
}

.other_login p {
    margin: 15px 0 0 0;
    text-align: center;
    font-weight: 400;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 5px 10px;
    font-size: 14px;
}

.other_login p a {
    text-decoration: none;
    font-weight: 500;
    color: #145d93;
    transition: all 0.3s ease;
}

.other_login p a:hover {
    color: #d4922c;
}

.other_login p a.btn {
    font-weight: 400;
    font-size: 14px;
    padding: 5px 14px 6px 14px;
    border-radius: 50px;
    background: #145d93;
    color: #FFF;
    letter-spacing: 0.2px;
    transition: all 0.3s ease;
}

.other_login p a.btn:hover {
    box-shadow: 0 0 9px 0 rgb(0 0 0 / 50%);
}

form {
    padding: unset;
    border: none;
    box-shadow: none;
}

.login_box form .form_input_wrap label {
    font-size: 16px;
    letter-spacing: 0.2px;
    color: #464646;
    margin-bottom: 5px;
    font-weight: 500;
}
.login_box form .form_input_wrap label h5 {
    font-size: 18px;
    margin: 0;
}

.form_input {
    border: 1px solid #CCC;
    width: 100%;
    height: 45px;
    padding: 10px 15px;
    outline: none;
    background-color: transparent;
}
textarea.form_input {
    height: 100px;
}

.form_input:focus {
    outline: none !important;
    box-shadow: none;
}

.form_input[readonly] {
    background: #f6f6f6;
    cursor: not-allowed;
    outline: none;
}

select.form_input {
    cursor: pointer;
}

input[type="file"].form_input {
    padding: 7px;
}

.form_input_wrap {
    margin-bottom: 25px;
}

.btn_button {
    background: #d4922c;
    border: 1px solid #d4922c;
    font-size: 15px;
    text-transform: uppercase;
    font-weight: 500;
    color: #FFF;
    padding: 0 19px;
    line-height: 45px;
    border-radius: 2px;
    letter-spacing: 0.2px;
    transition: all 0.5s ease;
    width: 150px;
}

.btn_button:hover {
    background: transparent;
    color: #d4922c;
}

.btn_button.full {
    width: 100%;
}

.btn_button_wrap {
    display: flex;
    align-items: center;
    gap: 5px 15px;
}

.btn_button_wrap a {
    text-decoration: none;
    font-weight: 500;
    color: #145d93;
}

.verify_dv {
    margin-top: 30px;
    display: none;
}

.align-items-baseline {
    align-items: baseline;
}

.mb_0 {
    margin-bottom: 0;
}
#advance_detail {
    display: none;
}


@media (max-width:479px) {
    .login_box {
        padding: 20px 20px;
    }
}