
.w-100 {
    width: 100%;
}
.login_form_main {
    width: 100%;
    height: calc(100vh - 71px);
    justify-content: space-between;
    background: #fff;
    color:#333;
}

.login_left {
    width: 45%;
    margin: auto;
    padding: 40px;
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    max-width: 650px;
}

.login_right {
    width: 40%;
    height: 100%;
    background: #000;
}
.login_right img {
    height: 100%;
    object-fit: cover;
    object-position: center;
    vertical-align: top;
}
.login_left h2 {
    font-size: 32px;
    margin-bottom: 30px;
    line-height: 40px;
    /* margin-left: 65px;*/
    font-weight: 500;
}

.name_field {
    width: 100%;
    display: inline-flex;
    justify-content: space-between;
    gap: 20px;
}

.field_main {
    width: 100%;
    display: inline-flex;
    flex-direction: column;
    gap: 4px;
    margin-bottom: 25px;
}

    .field_main label {
        font-size: 14px;
        font-weight: 500;
        margin-bottom: 8px;
    }

    .field_main input {
        padding: 10px;
        background: none !important;
        border: 1px solid #b4b4b4;
        /* width: 100%;*/
        margin-bottom: 0;
        line-height: 1.4;
    }

        .field_main input::placeholder{
            font-weight:300;
            font-size:12px;
        }

        .user_form button {
            width: 100%;
            background: #EA8A41;
            color: #fff;
            border: none !important;
            padding: 10px 15px;
            font-weight: 700;
            border-radius: 10px;
            font-size: 18px;
        }


.forgotten_pw_btn {
    width: 100%;
    background: #EA8A41;
    color: #fff;
    border: none !important;
    padding: 15px;
    font-size: 20px;
}

.user_form p {
    text-align: center;
    width: 100%;
    margin-top: 20px;
    margin-bottom: 0;
}

    .user_form p a {
        color: #000;
    }

 .forgotten_pw_btn {
    border: 1px solid #000 !important;
    background: #fff !important;
    color: #000 !important;
    margin-top: 20px;
}
.user_form p br {
    display: none !important;
}

@media (max-width: 1440px) {

    .field_main input {
        font-size: 14px;
    }

    .field_main label {
        font-size: 12px;
        font-weight: 400;
    }

    .user_form button {
        padding: 12px 15px;
        font-size: 16px;
    }
    .forgotten_pw_btn {
        padding: 12px 15px;
        font-size: 16px;
    }
}

@media (max-width: 1300px) {

    .field_main input {
        padding: 8px 10px;
    }

    forgotten_pw_btn {
        margin-top: 10px;
    }

    .field_main {
        margin-bottom: 10px;
    }

    .user_form p {
        margin-top: 10px;
    }
}

@media (max-width: 1024px) {
    .login_left {
        width: 60%;
        margin: 0;
    }
}

@media (max-width: 991px) {
    .login_left {
        width: 100%;
    }

    .login_right {
        display: none;
    }
}

@media (max-width: 767px) {

    .user_form p br {
        display: block !important;
    }
    .name_field {
        flex-direction: column;
        gap: 0;
    }
    .field_main label {
        font-size: 14px;
        margin-bottom: 2px;
    }
   .forgotten_pw_btn {
        margin-top: 20px;
    }

    .field_main {
        margin-bottom: 15px;
    }
     button {
        font-size: 14px;
    }
    .login_left {
        justify-content: flex-start;
    }


    .boldTextClass {
        font-weight: 700;
    }

}
@media (max-width: 600px) {
    .login_form_main {
        height: calc(100vh - 66px);
    }
}

    @media (max-height: 600px) {
        .login_form_main {
            justify-content: flex-start;
            overflow: auto;
        }
    }

    .PointerClass {
        cursor: pointer;
    }


.alertBox {
    display: none;
}

    .alertBox.active {
        position: fixed;
        left: 0px;
        right: 0px;
        top: 0px;
        bottom: 0px;
        background-color: rgb(89 89 89 / 60%);
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 2000;
        border: none;
        border-radius: 0px;
        margin-bottom: 0px;
    }

    .alertBox .alertBox-container .fa-exclamation-circle,
    .alertBox .alertBox-container .fa-check-circle,
    .alertBox .alertBox-container .fa-info-circle {
        font-size: 50px;
        padding-bottom: 10px;
    }

    .alertBox .alert,
    .alertBox .warning,
    .alertBox .success,
    .alertBox .info {
        display: none;
    }

        .alertBox.alert .alert,
        .alertBox.warning .warning,
        .alertBox.success .success,
        .alertBox.info .info {
            display: block;
            padding-bottom: 10px;
            font-size: 23px;
            font-weight: 600;
        }

        .alertBox.alert .alertBox-container:before {
            content: "";
            background-color: #FF5757;
            height: 15px;
            margin: 0px -15px;
        }

        .alertBox.warning .alertBox-container:before {
            content: "";
            background-color: #EA8A41;
            height: 15px;
            margin: 0px -15px;
        }

        .alertBox.success .alertBox-container:before {
            content: "";
            background-color: #2AC940;
            height: 15px;
            margin: 0px -15px;
        }

        .alertBox.info .alertBox-container:before {
            content: "";
            background-color: #3399FF;
            height: 15px;
            margin: 0px -15px;
        }


.alertBox-x {
    margin: 5px 0px -5px;
    opacity: .5;
    font-size: 20px;
    display: inline-block;
    width: fit-content;
    align-self: flex-end;
    cursor: pointer;
}

    .alertBox-x:hover {
        opacity: 1;
    }

.alertBox-container {
    background-color: #fff;
    width: 350px;
    min-height: 100px;
    border-radius: 10px;
    padding: 0px 15px 25px 15px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
    filter: drop-shadow(2px 2px 12px rgba(0, 0, 0, .4));
    animation: cart-item-load .2s;
}


.alertBox-message {
    padding-bottom: 25px;
}

.alertBox-buttons {
    display: flex;
}

    .alertBox-buttons .action-btn {
        padding: 7px 10px;
        border-radius: 10px;
        cursor:pointer;
    }