﻿
html, body {
    margin: 0;
    padding: 0;
    height: 100%;
}

.page-wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    /*background: linear-gradient(to bottom, #f0f9ff 50%, #a1dbff 100%);*/
    background: linear-gradient(to bottom, #fff 80%, #a1dbff 100%);
    background-size: cover;
    background-repeat: no-repeat;
}

.main-content {
    flex: 1;
}

.footer {
    width: 100%;
    padding: 20px;
    text-align: center;
}


*, *::before, *::after {
    box-sizing: border-box;
}

.login_title {
    font-size: 30px;
    font-weight: bold;
}

/*Reset Password*/
.reset_form_container .input-field {
    flex-direction: row;
    column-gap: 10px;
}

/*Forgot Password */
.otp_F_form_container .input-field {
    flex-direction: row;
    column-gap: 10px;
}

    .otp_F_form_container .input-field input {
        height: 60px;
        width: 60px;
        border-radius: 6px;
        outline: none;
        font-size: 25px;
        text-align: center;
        border: 1px solid #ddd;
        margin-right: 5px;
    }

        .otp_F_form_container .input-field input:last-child {
            margin-right: 0;
        }

        .otp_F_form_container .input-field input:focus {
            box-shadow: 0 1px 0 rgba(0, 0, 0, 0.1);
        }

        .otp_F_form_container .input-field input::-webkit-inner-spin-button,
        .otp_F_form_container .input-field input::-webkit-outer-spin-button {
            display: none;
        }



/*OTP CSS Starts*/
.otp_form_container .input-field {
    flex-direction: row;
    column-gap: 10px;
}

    .otp_form_container .input-field input {
        height: 60px;
        width: 60px;
        border-radius: 6px;
        outline: none;
        font-size: 25px;
        text-align: center;
        border: 1px solid #ddd;
        margin-right: 0;
    }

        .otp_form_container .input-field input:last-child {
            margin-right: 0;
        }

        .otp_form_container .input-field input:focus {
            box-shadow: 0 1px 0 rgba(0, 0, 0, 0.1);
        }

        .otp_form_container .input-field input::-webkit-inner-spin-button,
        .otp_form_container .input-field input::-webkit-outer-spin-button {
            display: none;
        }

.loginLogo {
    width: 15%;
}

.titlebox {
    display: table;
    width: 100%;
}

    .titlebox span {
        display: table-cell;
        text-align: center;
        vertical-align: middle;
        font-size: 18px;
        font-weight: bold;
        font-family: Verdana,sans-serif;
        white-space: nowrap;
        padding: .125em .375em;
    }

    .titlebox::before,
    .titlebox::after {
        content: "";
        display: table-cell;
        width: 50%;
        vertical-align: middle;
        background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgba(0,0,0,0)), color-stop(45%, rgba(0,0,0,0)), color-stop(46%, rgba(0,0,255,1)), color-stop(54%, rgba(0,0,255,1)), color-stop(55%, rgba(0,0,0,0)), color-stop(100%, rgba(0,0,0,0))); /* Chrome,Safari4+ */
        background: -webkit-linear-gradient(top, rgba(0,0,0,0) 0%, rgba(0,0,0,0) 45%, rgba(0,0,0,1) 46%, rgba(0,0,0,1) 54%, rgba(0,0,0,0) 55%, rgba(0,0,0,0) 100%); /* Chrome10+,Safari5.1+ */
        background: linear-gradient(to bottom, rgba(0,0,0,0) 0%, rgba(0,0,0,0) 45%, rgba(180,180,180,1) 46%, rgba(180,180,180,1) 54%, rgba(0,0,0,0) 55%), rgba(0,0,0,0) 100%); /* W3C */
    }

.page {
    font-size: 25px;
    font-weight: 600;
    color: red;
}

.errorImg {
    width: 70%;
}


/*************************** Responsive css ***********************/

/* Extra small devices (portrait phones, less than 576px) */
@media (max-width: 575.98px) {

    html, body {
        min-height: auto;
    }

    .loginLogo {
        width: 50%;
    }

    .login_title {
        font-size: 20px;
        font-weight: bold;
        border-left: none;
        border-right: none;
    }

    .footer {
        margin-top: 30px;
        padding-bottom: 10px;
    }

    .otp_form_container .input-field input {
        height: 48px;
        width: 48px;
    }
}

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) and (max-width: 767.98px) {

    html, body {
        min-height: auto;
    }

    .loginLogo {
        width: 35%;
    }

    .footer {
        margin-top: 30px;
        padding-bottom: 10px;
    }

    .otp_form_container .input-field input {
        height: 48px;
        width: 48px;
    }

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) and (max-width: 991.98px) {

    html, body {
        min-height: auto;
    }

    .footer {
        margin-top: 30px;
        padding-bottom: 10px;
    }
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) and (max-width: 1199.98px) {

    html, body {
        min-height: auto;
    }


    .footer {
        margin-top: 30px;
        padding-bottom: 10px;
    }
}

/* Extra large devices (large desktops, 1200px and up) */
/*@media (min-width: 1200px) {

    .loginLogo {
        width: 15%;
    }
}*/
