.body-container {
    background-image: linear-gradient(#6baace, #264783);
    background-attachment: fixed;
    background-repeat: no-repeat;
}

.carousel-item>div {
    height: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

/* these rules are used to make sure in mobile devices, tab panes are not all the same height (for example 'forgot' pane is not as tall as 'signup' pane) */

@media (max-width: 1199.98px) {
    .tab-sliding .tab-pane:not(.active) {
        max-height: 0 !important;
    }

    .tab-sliding .tab-pane.active {
        min-height: 80vh;
        max-height: none !important;
    }
}

/*OTP boxes related code*/
.digit-group input {
    width: 35px;
    height: 50px;
    /*background-color: lighten($BaseBG, 5%);*/
    border: 1;
    line-height: 50px;
    text-align: center;
    font-size: 24px;
    /*font-family: 'Raleway', sans-serif;*/
    font-weight: 200;
    color: black;
    margin: 0 2px;
}

@media (max-width: 400px) {
    .digit-group input {
        width: 20px;
        height: 35px;
        border: 1;
        line-height: 35px;
        text-align: center;
        font-size: 18px;
        /*font-family: 'Raleway', sans-serif;*/
        font-weight: 100;
        color: black;
        margin: 0 2px;
    }
}

.splitter {
    padding: 0 5px;
    color: black;
    font-size: 24px;
}

/*To make number field like text field: Start*/
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.digits {
    -moz-appearance: textfield;
}

/*To make number field like text field: End*/