* {
    box-sizing: border-box;
}

body {
    padding: 0;
    margin: 0;
    overflow: hidden;
}

.main_login {
    width: 100%;
    float: left;
    padding: 0;
    margin: 0;
}

.wrapper {
    width: 100%;
    float: left;
    padding: 0;
    margin: 0;
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.left_side {
    width: 50%;
    float: left;
    padding: 0;
    margin: 0;
}

.right_side {
    width: 50%;
    float: right;
    padding: 0;
    margin: 0;
    border-left: 1px solid #fb9a71;
}

.right_side .logo {
    width: 100%;
    float: left;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.right_side .logo img {
    width: 100%;
    max-width: 270px;
}

.left_side h4 {
    text-align: center;
    color: #000;
    margin: 0 0 30px;
}

.left_side h3 {
    text-align: center;
    color: #000;
    margin: 0 0 30px;
}

.login_detail {
    width: 100%;
    float: left;
    padding: 0 50px;
    margin: 0;
}

.login_detail form {
    margin: 0 0 20px;
}

.login_detail .d1 {
    width: 100%;
    float: left;
    padding: 0;
    margin: 0;
    position: relative;
}

.login_detail .d1 i {
    position: absolute;
    bottom: 20px;
    left: 15px;
    font-size: 20px;
    color: #a8a8a8;
}

.login_detail .d1:hover i {
    color: #fb9a71;
}

.login_detail label {
    display: block;
    margin: 0 0 8px;
    font-weight: bold;
}

.login_detail input {
    display: block;
    width: 100%;
    padding: 6px 12px 6px 40px;
    margin: 0 0 10px;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #212529;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #d7d7d7;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: 5px;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

.login_detail input:focus-visible {
    border: 1px solid #fb9a71;
    outline: unset;
}

.login_detail .d1 input:hover {
    border: 1px solid #fb9a71;
    outline: unset;
}

.forgot_txt {
    width: 100%;
    float: left;
    padding: 0;
    margin: 0 0 30px;
    text-align: right;
}

.forgot_txt a {
    font-size: 16px;
    color: #fb9a71;
}

.forgot_txt a:hover {
    font-size: 16px;
    color: #0b467c;
}

.login_btn {
    width: 100%;
    float: left;
    padding: 0;
    margin: 0;
}

.login_btn button {
    display: inline-block;
    width: 48%;
    font-weight: 400;
    line-height: 1.5;
    text-align: center;
    text-decoration: none;
    vertical-align: middle;
    cursor: pointer;
    user-select: none;
    background-color: transparent;
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
    display: inline-block;
    border-radius: 5px;
    color: #000;
    text-align: center;
    border: 1px solid #fb9a71;
}

.login_btn .log_btn {
    float: left;
}

.login_btn button.register_btn {
    float: right;
}

.login_btn button:hover {
    background-color: #0b467c;
    color: #fff;
    border: 1px solid transparent;
}


/* modal Css */

.login_modal .modal-dialog {
    max-width: 1000px;
    box-shadow: 1px -1px 29px 7px rgba(0, 0, 0, 0.81);
}

.login_modal .modal-body {
    max-height: 500px;
}