﻿body {
    background-repeat: no-repeat;
    background-size: 100%;
    background-color: black;
    overflow-x: hidden;
    width: 100%;
}


.darkBG {
    
    background-repeat: no-repeat;
    background-size: cover;
}


.LoginWrapper {
    width: 100%;
    min-height: 100vh;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    padding: 15px;
    /*
    background: #0250c5;
    background: -webkit-linear-gradient(bottom, #0250c5, #d43f8d);
    background: -o-linear-gradient(bottom, #0250c5, #d43f8d);
    background: -moz-linear-gradient(bottom, #0250c5, #d43f8d);
    background: linear-gradient(bottom, #0250c5, #d43f8d);
    */
    position: relative;
    z-index: 1;
}
/*
    .LoginWrapper::before {
        content: "";
        display: block;
        position: absolute;
        z-index: -1;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        background-image: url('/Content/Media/Images/LoginBackground.png');
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center;
    }
    */
.wrap-login100 {
    width: 450px;
    background: #fff;
    border-radius: 3px;
    overflow: hidden;
}

.LoginContainer {
    width: 450px;
    background: #fff;
    border-radius: 3px;
    overflow: hidden;
    padding: 40px;
    box-shadow: rgba(0, 0, 0, 1) 0 0 10px;
}

.LoginInternalWrapper {
    width: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.LoginTitle {
    font-size: 30px;
    color: #333333;
    line-height: 1.2;
    text-transform: uppercase;
    text-align: center;
    width: 100%;
    display: block;
    margin-bottom: 30px;
    font-weight: 600;
    overflow: hidden;
    margin-top: 13px;
}

.InputWrapper, .RMWrapper {
    width: 100%;
    text-align: center;
}

    .InputWrapper .input:last-of-type {
        margin-top: 30px
    }

.input-group-addon {
    padding: 10px;
    font-size: 14px;
    font-weight: 400;
    line-height: 28px;
    color: #555;
    text-align: center;
    background-color: #eee;
    border: 1px solid #ccc;
    border-radius: 4px;
    white-space: nowrap;
    border-right: none !important;
    border-bottom-right-radius: 0px !important;
    border-top-right-radius: 0px !important;
}

.LoginLangWrapper {
    position: absolute;
    right: 10px;
    z-index: 2;
    top: 10px;
}

.LoginInput {
    border-left: none !important;
    color: #555 !important;
    background-color: #eee !important;
    border-top-left-radius: 0px !important;
    border-bottom-left-radius: 0px !important;
    display: block;
    width: 100%;
    height: 50px;
    padding: .375rem .75rem;
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.5;
    color: #495057;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    border-left-color: rgb(206, 212, 218);
    border-left-style: solid;
    border-left-width: 1px;
    border-radius: .25rem;
    border-top-left-radius: 0.25rem;
    border-bottom-left-radius: 0.25rem;
    transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
    position: relative;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    width: 1%;
    margin-bottom: 0;
}

    .LoginInput:focus {
        border-left: none !important;
        outline: none !important;
    }

.PRInput {
    color: #555 !important;
    background-color: #eee !important;
    display: block;
    width: 60%;
    height: 50px;
    padding: .375rem .75rem;
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.5;
    color: #495057;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
    position: relative;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    margin-bottom: 0;
    border-radius: 4px
}

.input-group:focus-within {
    color: #495057;
    background-color: #fff;
    border-color: #80bdff;
    border-left: none !important;
    outline: 0;
    box-shadow: 0 0 0 .2rem rgba(0,123,255,.25);
    z-index: 3;
}

.InputWrapper .input-group:last-of-type {
    margin-top: 20px;
}


.InputWrapper .input-group, .FPWrapper {
    width: 250px;
    margin: 0 auto;
}

.FPWrapper {
    margin-top: 20px;
    width: 100%;
}

.FPLink {
    color: #0d75e2;
    width: 250px;
    margin: 0 auto;
    cursor: pointer;
    margin-top: 11px;
}

    .FPLink:hover {
        transform: scale(1.01);
    }

.LoginBtn {
    font-size: 16px;
    line-height: 1.5;
    color: #fff;
    text-transform: uppercase;
    width: 100%;
    height: 54px;
    border-radius: 3px;
    background: #d33f8d;
    justify-content: center;
    align-items: center;
    padding: 0 25px;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    -moz-transition: all 0.4s;
    transition: all 0.4s;
    border: 1px solid #d33f8d;
}

    .LoginBtn:hover {
        background: #333333;
        border-color: #333333
    }

.LoginBtnWrapper {
    width: 100%;
    margin-top: 30px;
    text-align: center;
}

    .LoginBtnWrapper button {
        width: 250px;
    }

.LoginTitle img {
    max-width: 100%;
    max-height: 100%;
    margin: 0 auto;
}

.UsernameError, .PasswordError {
    position: absolute;
    right: -25px;
    top: 15px
}

.input-group.has-error {
    box-shadow: 0 0 0 .2rem rgba(254, 2, 2, 0.61);
    border-radius: 5px;
}

.LoginError {
    color: red;
    font-size: 14px;
    margin-bottom: 5px
}

button[disabled~="disabled"] {
    cursor: not-allowed;
}

.PREmailNotValid, .PREmailValid {
    position: absolute;
    top: 70%;
    left: 62%
}

.LoginLangWrapper span {
    text-align: center;
}


/*Self Reg*/

.SRDisclaimerWrapper {
    margin: 20px
}


.SRSaveBtn {
    background: #0097ED !important;
    text-align: center !important;
    padding: 2px 10px !important;
    border-radius: 4px !important;
    color: #fff !important;
    cursor: pointer !important;
    margin: 0 10px !important;
    border-bottom: 1px solid #0097ED !important;
    float: right;
}

    .SRSaveBtn:hover {
        opacity: 0.8;
    }

.SRRow {
    margin-top: 20px;
    overflow: hidden;
}

    .SRRow .input-label, .SRRow .input {
        display: inline-block;
    }

    .SRRow input {
        margin-left: 20px !important;
        width: 51% !important;
        margin-right: 20px !important;
    }

    .SRRow .input-label {
        text-align: left;
        float: left;
        line-height: 34px;
        font-weight: 600;
    }

.ViewPWBtn {
    position: absolute;
    right: 7px !important;
    top: 53%;
    cursor: pointer;
}

.SRSaveBtn {
    margin-top: 10% !important;
}

.SRRow .select2 {
    width: 338px !important;
    right: 50px;
    position: relative;
    float: right;
}

.DisabledDDL {
    cursor: not-allowed;
}

    .DisabledDDL * {
        pointer-events: none;
    }

.AFErrorLabel, .PasswordGoodIcon, .EmailGoodIcon, .UsernameGoodIcon, .UsernameCheckLoading, .PasswordCheckLoading {
    font-size: 15px !important;
    margin-top: 16px;
    position: absolute;
    right: 48px;
}

.SRCloseBtn {
    margin-top: 30px;
}

#SRKeyResponse {
    margin-top: 10px;
}

#ui-datepicker-div {
    z-index: 99999 !important;
}

#SelfRegModal input {
    margin: 0;
    margin-left: 0px;
    height: 34px;
    line-height: 34px;
    border: solid 1px #ccc;
    padding: 5px;
    vertical-align: top;
    width: 400px;
    border: none !important;
    border-bottom-color: currentcolor;
    border-bottom-style: none;
    border-bottom-width: medium;
    border-bottom: solid 1px #ccc !important;
    background: #fff !important;
    right: 53px;
    position: absolute;
}

    #SelfRegModal input:focus {
        border-bottom: 2px solid black !important;
    }

.ViewPWBtn:hover {
    transform: scale(1.2)
}


.modal-dialog {
    max-width: 640px !important;
}

@media only screen and (max-width:630px) {
    #SelfRegModal input {
        width: 250px !important;
        ;
    }
}

@media only screen and (max-width:549px) {
    #SelfRegModal input {
        width: 220px !important;
    }
}


@media only screen and (max-width:523px) {
    #SelfRegModal input {
        display: block !important;
        float: none !important;
        position: relative;
        width: 100% !important;
    }

    .SRRow .input-label {
        float: none !important;
        display: block;
        width: 100%;
        text-align: center;
    }

    .SRRow i {
        float: none !important;
        width: 100% !important;
        text-align: center;
        position: relative;
        right: 0;
        margin: 0;
    }

    .ViewPWBtn {
        top: 51.25%;
        right: 0 !important;
    }
}


.is-webview .modal-content {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    height:100%;
}

.is-webview .modal-body {
    max-height: 75%;
    overflow-y: auto;
}


.is-webview .modal-footer .btn {
    width: 100%;
}


.is-webview [data-dismiss="modal"] {
    display: none;
}