﻿@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@100;300;400;500;700;900&display=swap');

.container {
    max-width: 1200px;
    width: 100%;
    display: inherit;
    justify-content: inherit;
    align-items: inherit;
    margin: auto;
    padding: 0 20px;
    font-family: Roboto;
}
input, select {
    border: 1px solid #bbc2bf;
}
 

#pageWrapper {
    padding: 35px 0px;
    background: linear-gradient(#00adf0,#00adf0);
    background-position: center top;
    background-repeat: no-repeat;
    background-size: 130px 1px;
}

.loginRegisterPara {
    color: #4d4d4d;
    font-size: 20px;
    font-weight: 400;
    text-align: center;
    max-width: 697px;
    margin: auto;
}

.form_wrapper {
    background-color: #e5f7fd;
    padding: 35px 0px;
}

    .form_wrapper label {
        color: #4d4d4d;
        font-size: 15px;
    }

#GeneralError,
#UserPassError, .form_wrapper {
    margin-top: 35px;
}

#login-form {
    max-width: 300px;
    margin: auto;
}

#forgotPassCode {
    color: #4d4d4d;
    font-size: 12px;
    margin-bottom: 0px;
    cursor:pointer;
}

#login-button {
    display: block;
    float: none;
    margin-inline-start: 33%;
    width: auto;
    height: auto;
    line-height: normal;
    background-color: #00adf0;
    border-radius: 0px;
    padding: 5px 16px;
    text-transform: uppercase;
    margin-top: 35px;
}

    #login-button.loginLoader {
        color: transparent;
        background-image: url('./Images/woosh_loader_2.gif');
        background-position: center center;
        background-repeat: no-repeat;
        background-size: 30px;
    }

#PromotionCodeLabel {
    color: #00adf0;
    font-size: 20px;
    font-weight: 500;
    text-align: center;
    padding-top: 30px;
}

    #PromotionCodeLabel + div {
        color: #4d4d4d;
        font-size: 15px;
        text-align: center;
        max-width: 493px;
        margin: auto;
        line-height:20px;
        margin-top:5px;
    }



/*media query tablet*/
@media only screen and (max-width: 1199px) {
    .container {
        max-width: 768px;
    }
}

/*//media query mobile*/
@media only screen and (max-width: 767px) {
    .container {
        max-width: none;
    }
}
