.login_main_box {
    width: 500px;
    border-radius: 10px;
    padding: 20px;
    background: #fff;
    box-shadow: 0 6px 9px rgba(0, 0, 0, 0.06), 0 1px 9px rgba(0, 0, 0, 0.06);
    -webkit-transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    margin: 0;
    position: relative;
}

/* .login_main_box:hover {
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.1), 0 10px 10px rgba(0, 0, 0, 0.1);
} */

table,
tbody,
tr,
td {
    display: block;
}

body {
    box-sizing: border-box;
    font-family: Raleway-SemiBold;
}

.login_form input[type="text"],
.login_form input[type="password"],
.login_form input[type="number"] {
    width: -webkit-fill-available;
    font-family: Raleway-SemiBold;
    font-size: 25px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    text-transform: none;
    border-radius: 4px;
    height: 40px;
    padding: 20px 0 0 15px;
    font-size: 14px;
    background: #ffffff;
}

input[type="text"]:focus,
input[type="number"]:focus,
textarea:focus,
input[type="email"]:focus,
input[type="password"]:focus,
select:focus {
    background: #f4f4f4;
    border: 1px solid rgba(0, 0, 0, 0.4);
    outline: none;
}

table tbody tr {
    position: relative;
}

.input-title {
    position: absolute;
    left: 22px;
    top: 18px;
    font-size: 12px;
    text-transform: uppercase;
    padding: 0;
    color: #626262;
}

::placeholder {
    /* Chrome, Firefox, Opera, Safari 10.1+ */
    color: #d9d9d9;
    opacity: 1;
    font-size: 14px;
    /* Firefox */
}

:-ms-input-placeholder {
    /* Internet Explorer 10-11 */
    color: #d9d9d9;
    font-size: 14px;
}

::-ms-input-placeholder {
    /* Microsoft Edge */
    color: #d9d9d9;
    font-size: 14px;
}

.captch_design_ox {
    font-family: cursive;
    padding: 8px 0 10px 10px;
    letter-spacing: 10px;
    margin-top: 10px;
    color: #000000;
    width: fit-content;
    line-height: 28px;
    background: #e4e4e4;
    font-size: 30px;
}

input[type="submit"] {
    background: #1b3c86;
    color: #fff;
    width: 100%;
    padding: 12px;
    border: 0px;
    font-size: 16px;
    font-family: Raleway-Regular;
    /* margin-top: 16px; */
    border-radius: 4px;
    text-transform: uppercase;
}

input[type="submit"]:hover,
input[type="submit"]:focus {
    background: #253965;
    cursor: pointer;
    outline: none;
}

.login-middle {
    display: flex;
    align-items: center;
    justify-content: center;
    height: calc(100vh - 0px);
    background: url("../img/login-bg-03.jpg") no-repeat center;
    background-size: cover;
}

.login_main_box [align="center"] img {
    width: 140px !important;
    margin-bottom: 10px;
}

.Err_msg {
    background: transparent;
    color: red;
    width: fit-content;
    margin: 0 auto;
    text-align: center;
    margin-top: 0;
    margin-bottom: 0;
    padding: 0;
    border-radius: 0;
    text-transform: capitalize;
}

@media (max-width: 767px) {
    .login-middle {
        background: #ffffff;
    }

    .login_main_box {
        border-radius: 0;
        box-shadow: none;
        padding: 0 10px;
    }
}