input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input[type="number"] {
    -moz-appearance: textfield;
}

input[type="number"]::-ms-clear {
    display: none;
}

@media screen and (min-width: 1098px) {

    body {
        background-color: var(--primary);
        padding: 20px 20px;
    }

    /* Login Nav */
    .loginnav {
        width: 100%;
        display: flex;
        justify-content: end;
        align-items: center;
    }

    .loginnav .loginlogo {
        width: 13%;
        display: flex;
        justify-content: center;
        align-items: center;
        background-color: var(--white);
        border-radius: 12px;
        padding: 5px;
    }

    /* Login Div */
    .login {
        width: 100%;
        margin-top: 20px;
    }

    .logindiv {
        width: 90%;
        margin: auto;
        display: grid;
        grid-template-columns: 50% 50%;
        justify-content: space-evenly;
        align-items: center;
    }

    .loginform h1 {
        color: var(--black);
        font-weight: 800;
        font-size: 45px;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        margin-top: 20px;
    }

    .loginform h6 {
        color: var(--gray);
        font-size: 15px;
        font-weight: 450;
        letter-spacing: 0.5px;
        margin-top: 20px;
    }

    .loginform .formdiv {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        margin: auto;
    }

    .loginform .row {
        margin: auto;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .loginform form .col-md-8 div,
    .loginform form .col-md-10 div {
        border: 1px solid var(--inp-border);
        background-color: var(--white);
        padding: 10px 5px;
        border-radius: 8px;
    }

    .loginform form label {
        font-size: 15px;
        font-weight: 600;
        margin: 20px 0px 5px 0px;
    }

    .loginform form .col-md-8 i,
    .loginform form .col-md-8 .pass i,
    .loginform form .col-md-10 i,
    .loginform form .col-md-10 .pass i {
        width: 12%;
        text-align: center;
        color: #888;
        font-size: 20px;
    }

    .loginform form input {
        width: 86%;
        margin: auto;
        border: none;
        outline: none;
        background-color: var(--white);
        font-size: 14px;
    }

    .loginform form .pass input {
        width: 74%;
        margin: auto;
        border: none;
        outline: none;
        background-color: var(--white);
        font-size: 14px;
    }

    .loginform .col-md-8 p {
        font-size: 13px;
        color: var(--black);
    }

    .loginform .forgot {
        margin-top: 20px;
    }

    .loginform .forgot a:hover p {
        color: #228BE6;
        transition: 0.25s ease-in-out;
    }

    .loginform .button {
        margin-top: 30px;
        border: none;
    }

    .loginform h5 {
        font-weight: 600;
        font-size: 14px;
        margin-top: 20px;
        margin-bottom: 0px;
    }

    /* OTP */
    .otp-container {
        display: flex;
        justify-content: space-between;
        align-items: start;
    }

    .otp-input {
        outline: none;
        width: 50px !important;
        height: 50px;
        font-size: 25px;
        text-align: center;
        margin: 0px !important;
        border: 1px solid #E3E5E5 !important;
        border-radius: 5px;
        color: #5e5e5e;
    }

    .otp-input:last-child {
        margin-right: 0;
    }

}

@media screen and (min-width: 768px) and (max-width: 1098px) {

    body {
        background-color: var(--primary);
        padding: 10px 10px;
    }

    /* Login Nav */
    .loginnav {
        width: 100%;
        display: flex;
        justify-content: end;
        align-items: center;
    }

    .loginnav .loginlogo {
        width: 13%;
        display: flex;
        justify-content: center;
        align-items: center;
        background-color: var(--white);
        border-radius: 12px;
        padding: 5px;
    }

    .loginnav img {
        height: 30px !important;
    }

    /* Login Div */
    .login {
        width: 100%;
        margin-top: 30px;
    }

    .logindiv {
        width: 90%;
        margin: auto;
        display: grid;
        grid-template-columns: 45% 55%;
        justify-content: space-evenly;
        align-items: center;
    }

    .loginform h1 {
        color: var(--black);
        font-weight: 800;
        font-size: 30px;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        margin-top: 15px;
    }

    .loginform h6 {
        color: var(--gray);
        font-size: 12px;
        font-weight: 450;
        letter-spacing: 0.5px;
        width: 90%;
        margin: 15px auto 0px auto;
    }

    .loginform .formdiv {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        margin: auto;
    }

    .loginform .row {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .loginform form .col-md-8 {
        padding: 0px !important;
    }

    .loginform form .col-md-8 div {
        border: 1px solid var(--inp-border);
        background-color: var(--white);
        padding: 5px 5px;
        border-radius: 8px;
    }

    .loginform form .col-md-8 {
        width: 70% !important;
    }

    .loginform form label {
        font-size: 14px;
        font-weight: 600;
        margin: 10px 0px 8px 0px;
    }

    .loginform form .col-md-8 i,
    .loginform form .col-md-8 .pass i {
        width: 12%;
        text-align: center;
        color: #888;
        font-size: 15px;
    }

    .loginform form input {
        width: 86%;
        margin: auto;
        border: none;
        outline: none;
        background-color: var(--white);
        font-size: 14px;
    }

    .loginform form .pass input {
        width: 76%;
        margin: auto;
        border: none;
        outline: none;
        background-color: var(--white);
        font-size: 14px;
    }

    .loginform .col-md-8 p {
        font-size: 13px;
        color: var(--black);
    }

    .loginform .forgot {
        margin-top: 10px;
    }

    .loginform .forgot a:hover p {
        color: #228BE6;
        transition: 0.25s ease-in-out;
    }

    .loginform .button {
        margin-top: 20px;
        border: none;
    }

    .loginform h5 {
        font-weight: 600;
        font-size: 14px;
        margin-top: 10px;
        margin-bottom: 0px;
    }

    /* OTP */
    .otp-container {
        display: flex;
        justify-content: space-between;
        align-items: start;
    }

    .otp-input {
        outline: none;
        width: 40px !important;
        height: 40px;
        font-size: 25px;
        text-align: center;
        margin: 0px !important;
        border: 1px solid #076F18 !important;
        border-radius: 5px;
        color: #5e5e5e;
    }

    .otp-input:last-child {
        margin-right: 0;
    }

}

@media screen and (max-width: 768px) {

    body {
        background-color: var(--primary);
        padding: 10px 10px;
    }

    /* Login Nav */
    .loginnav {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .loginnav .loginlogo {
        width: 40%;
        display: flex;
        justify-content: center;
        align-items: center;
        background-color: var(--white);
        border-radius: 12px;
        padding: 5px;
    }

    .loginnav img {
        height: 30px !important;
    }

    /* Login Div */
    .login {
        width: 100%;
        margin-top: 15px;
    }

    .logindiv {
        width: 90%;
        margin: auto;
        display: block;
    }

    .loginform h1 {
        color: var(--black);
        font-weight: 800;
        font-size: 30px;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        margin-top: 15px;
    }

    .loginform h6 {
        color: var(--gray);
        font-size: 12px;
        font-weight: 450;
        letter-spacing: 0.5px;
        margin-top: 15px;
    }

    .loginform .container {
        padding: 0px;
    }

    .loginform .formdiv {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        margin: auto;
    }

    .loginform .row {
        margin: auto;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .loginform form .col-md-8 {
        width: 100%;
    }

    .loginform form .col-md-8 {
        padding: 0px !important;
    }

    .loginform form .col-md-8 div {
        border: 1px solid var(--inp-border);
        background-color: var(--white);
        padding: 5px 5px;
        border-radius: 8px;
    }

    .loginform form label {
        font-size: 13px;
        font-weight: 600;
        margin: 10px 0px 8px 0px;
    }

    .loginform form .col-md-8 i,
    .loginform form .col-md-8 .pass i {
        width: 12%;
        text-align: center;
        color: #888;
        font-size: 14px;
    }

    .loginform form input {
        width: 86%;
        margin: auto;
        border: none;
        outline: none;
        background-color: var(--white);
        font-size: 13px;
    }

    .loginform form .pass input {
        width: 74%;
        margin: auto;
        border: none;
        outline: none;
        background-color: var(--white);
        font-size: 14px;
    }

    .loginform .col-md-8 p {
        font-size: 13px;
        color: var(--black);
    }

    .loginform .forgot {
        margin-top: 10px;
    }

    .loginform .forgot a:hover p {
        color: #228BE6;
        transition: 0.25s ease-in-out;
    }

    .loginform .button {
        margin: 10px 0px;
        border: none;
    }

    .loginform .button button {
        width: 60%;
    }

    .loginform h5 {
        font-weight: 600;
        font-size: 12px;
        margin-top: 8px;
    }

    /* OTP */
    .otp-container {
        display: flex;
        justify-content: space-between;
        align-items: start;
    }

    .otp-input {
        outline: none;
        width: 40px !important;
        height: 40px;
        font-size: 25px;
        text-align: center;
        margin: 0px !important;
        border: 1px solid #076F18 !important;
        border-radius: 5px;
        color: #5e5e5e;
    }

    .otp-input:last-child {
        margin-right: 0;
    }

}
