.login-box{
    width: 450px;
    min-width: 300px;
}
      /* ----------------------------- Login Page -------------------------------- */

        .login__page--container {
            max-width: 570px;
            margin: 70px auto;
        }

        .login__page--container h1 {
            font-size: 28px;
            line-height: 1.2;
            font-weight: 500;
            color: #333333;
            margin: 0 0 30px;
            text-align: center;
        }

        .login__page--form label {
            font-size: 16px;
            color: #666666;
            line-height: 1;
            margin: 0 0 10px;
        }

        .login__page--form .form-group {
            margin-bottom: 20px;
        }

        .login__page--form .form-control {
            height: 48px;
            line-height: 48px;
        }

        .forget__pass {
            float: right;
            font-size: var(--text-base);
            line-height: 1;
            color: #111111;
            text-decoration: underline;
            padding-top: 10px;
        }

        .forget__pass:hover {
            text-decoration-color: transparent;
        }


        .label__checkbox {
            display: block;
            position: relative;
            padding-left: 35px;
            cursor: pointer;
            -webkit-user-select: none;
            -moz-user-select: none;
            -ms-user-select: none;
            user-select: none;
        }

        .login__page--form label.label__checkbox {
            margin: 50px 0 40px;
            color: #333333;
        }

        /* Hide the browser's default checkbox */
        .label__checkbox input {
            position: absolute;
            opacity: 0;
            cursor: pointer;
            height: 0;
            width: 0;
        }

        /* Create a custom checkbox */
        .checkmark {
            position: absolute;
            top: -2px;
            left: 0;
            height: 20px;
            width: 20px;
            background-color: transparent;
            border: 2px solid #111111;
            border-radius: 4px;
            transition: all 0.3s ease;
        }


        .label__checkbox:hover input~.checkmark {
            background-color: rgba(17, 17, 17, .5);
            border-color: transparent;
        }

        .label__checkbox input:checked~.checkmark {
            background-color: #111111;
        }

        .checkmark:after {
            content: "";
            position: absolute;
            display: none;
        }

        .label__checkbox input:checked~.checkmark:after {
            display: block;
        }

        .label__checkbox .checkmark:after {
            left: 5px;
            top: -1px;
            width: 8px;
            height: 14px;
            border: solid white;
            border-width: 0 3px 3px 0;
            -webkit-transform: rotate(45deg);
            -ms-transform: rotate(45deg);
            transform: rotate(45deg);
        }

        .btn__theme {
            display: block;
            border-radius: 8px;
            color: #ffffff;
            width: 100%;
            margin-top: 30px !important;
            padding: 12px;
            border: none;
            font-size: var(--text-lg);
            font-weight: 500;
            -webkit-transition: 0.3s linear;
            -moz-transition: 0.3s linear;
            -ms-transition: 0.3s linear;
            -o-transition: 0.3s linear;
            transition: 0.3s linear;
            text-align: center;
            text-underline-position: from-font;
            text-decoration-skip-ink: none;
            position: relative;
            z-index: 2;
            overflow: hidden;
        }

        .btn__theme:before {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: #00274d;
            transition: all .3s;
            border-radius: 8px;
            z-index: -2;
        }

        .btn__theme:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0%;
            height: 100%;
            background-color: #FF6600;
            transition: all .3s;
            border-radius: 8px;
            z-index: -1;
        }

        .btn__theme:hover::after,
        .btn__theme:focus::after {
            width: 100%;
        }

        .login__page--form select.form-control {
            line-height: inherit;
            appearance: auto;
        }

        .resend__otp {
            margin-top: 6px !important;
        }
        @media (max-width: 767.98px){
            .login__page--container{
                padding: 0px 10px;
            }
        }