﻿body {
    color: white;
    font-family: "Source Sans Pro", sans-serif;
    font-size: 14px;
    font-weight: 400;
    background-color: rgb(55, 74, 94);
}

#login-container {
    position: relative;
    display: flex;
    justify-content: center;
    width: 95%;
    margin: 8%;
    margin-left: -45px;
}

.loginLinkcss {
    color: white;
    text-decoration: none;
    cursor: pointer;
    float: right;
    margin-right: -10px;
}

    .loginLinkcss:hover {
        color: white !important;
        text-decoration: none;
    }

.remember-me {
    color: white;
    text-decoration: none;
    float: left;
    padding: 0px 4px 0px 4px;
}

    .remember-me:hover {
        color: white;
        text-decoration: none;
    }

.forgot-password {
    color: white;
    text-decoration: none;
    float: right;
    margin-right: -10px;
}

#lnkResetPassword:hover {
    font-weight: bold;
}

#chk_remember_me {
    float: left;
}

.modal-overlay {
    opacity: 0;
    filter: alpha(opacity=0);
    position: absolute;
    top: 0;
    left: 0;
    z-index: 9;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3) !important;
}

#divLoginForm {
    margin: 6px;
    background-color: white;
    height: 110px;
    border: 1px solid white;
    border-radius: 13px;
    position: relative;
}

#divcreateLoginForm {
    position: relative;
}

#lnkResetPassword {
    padding-left: 8px;
    color: white;
    font-weight: bold;
    text-decoration: none;
}

    #lnkResetPassword:hover {
        color: white;
        font-weight: bold;
        text-decoration: none;
    }

#txtUserName, #txtPassword {
    height: 24px;
    width: 88%;
    border: none;
    background-color: white;
    color: black;
    padding: 0px;
    box-shadow: none;
    padding-left: 5px;
}

    #txtUserName:focus, #txtPassword:focus {
        background-color: lightgrey !important;
    }

.lblUsername {
    color: #999;
    position: absolute;
    pointer-events: none;
    top: 24px;
    transition: 0.2s ease all;
    -moz-transition: 0.2s ease all;
    -webkit-transition: 0.2s ease all;
}

#txtUserName:focus ~ .lblUsername,
#txtUserName:valid ~ .lblUsername {
    top: 2px;
    color: #999;
    background-color: transparent;
}

.lblPassword {
    color: #999;
    position: absolute;
    pointer-events: none;
    top: 10px;
    transition: 0.2s ease all;
    -moz-transition: 0.2s ease all;
    -webkit-transition: 0.2s ease all;
}

#txtPassword:focus ~ .lblPassword,
#txtPassword:valid ~ .lblPassword {
    top: 30px;
    color: #999;
    background-color: transparent;
}

#txtNewPassword, #txtConfirmPassword {
    height: 24px;
    border: none;
    background-color: rgb(55, 74, 94);
    color: black;
    padding: 0px;
    box-shadow: none;
    padding-left: 5px;
}

    #txtNewPassword:focus, #txtConfirmPassword:focus {
        background-color: white !important;
    }

.lblNewPassword {
    color: white;
    position: absolute;
    pointer-events: none;
    top: 24px;
    transition: 0.2s ease all;
    -moz-transition: 0.2s ease all;
    -webkit-transition: 0.2s ease all;
}

#txtNewPassword:focus ~ .lblNewPassword,
#txtNewPassword:valid ~ .lblNewPassword {
    top: 2px;
    color: white;
    background-color: transparent;
}

.lblConfirmPassword {
    color: white;
    position: absolute;
    pointer-events: none;
    top: 10px;
    transition: 0.2s ease all;
    -moz-transition: 0.2s ease all;
    -webkit-transition: 0.2s ease all;
}

#txtConfirmPassword:focus ~ .lblConfirmPassword,
#txtConfirmPassword:valid ~ .lblConfirmPassword {
    top: 30px;
    color: white;
    background-color: transparent;
}

#divBrowserCompatibility {
    display: none;
    width: 350px;
    position: absolute;
    top: -60px;
    margin: auto;
    z-index: 10;
    padding: 10px;
    background-color: white;
    border-radius: 12px;
    color: rgb(102, 102, 102);
    left: 45%;
}

#divWarningBrowserNotSupportive {
    display: none;
    font-weight: 500;
    line-height: normal;
    margin-bottom: 10px;
    float: left;
}

.overlay {
    display: none;
    width: 100%;
    height: 100%;
    position: absolute;
    background-color: #DACFCF;
    top: 0px;
    z-index: 99999;
    opacity: 0;
    cursor: wait;
}

.overlay-1 {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9;
    background: #ffffff;
    background-color: rgba(0,0,0,0.25);
}

.no-padding {
    padding: 0px !important;
}

#txtAppTitle, #txtResetPasswd, #txtForgotPasswordHeader, #txtCreateLoginHeader, #txtCreateLoginFormHeader, #txtEmailSuccessHeader {
    font-size: 32px;
}

#cntLoginForm, #divResetPasswdForm {
    padding-right: 18%;
    padding-left: 20px;
}

#alertMessage {
    display: none;
    position: absolute;
    left: 6px;
    bottom: 25px;
    width: 100%;
    text-align: center !important;
    background-color: white;
    color: #E3021F;
    text-align: left;
    float: left;
    padding: 5px;
    border-radius: 11px;
}

.pin-input {
    display: inline-block;
    height: 50px;
    width: 50px;
    text-align: center;
    font-size: 25px;
    margin-right: 10px;
}

#divPasswordStrength i {
    width: 30px;
    text-align: center;
}

#divPasswordStrength .invalid {
    color: #d00527;
}

#divPasswordStrength .valid {
    color: #05d047;
}

#btnSendEmail_WB {
    width: 90px;
    background-color: #d00527;
    color: white;
    border: 1px solid #d00527;
    border-radius: 11px;
    float: left;
}

    #btnSendEmail_WB:disabled {
        background-color: gray;
        border-color: gray;
        cursor: not-allowed;
    }

#lnkBackToLogin {
    color: white;
    cursor: pointer;
}

    #lnkBackToLogin.float-right {
        float: right;
        margin: 0% 0% 0% 19%;
        position: absolute;
    }

@media (min-width:1200px) {
    #lnkBackToLogin {
        margin-right: 15%;
    }
}

@media (min-width:1025px) and (max-width:1440px) {
    #login-container {
        width: 85%;
    }

    #cntLoginForm, #divResetPasswdForm {
        padding-right: 10%;
    }
}

@media (min-width:991px) and (max-width:1024px) {
    #login-container {
        width: 100%;
    }

    #cntLoginForm, #divResetPasswdForm {
        padding-right: 13%;
    }

    #divBrowserCompatibility {
        left: 40%;
    }
}

@media (max-width:990px) {
    #login-container {
        margin: 8% auto;
        width: 95%;
        margin-left: -45px
    }

    #cntLoginForm, #divResetPasswdForm {
        padding-right: 0px !important;
    }

    #txtAppTitle, #txtResetPasswd, #txtForgotPasswordHeader, #txtCreateLoginHeader, #txtCreateLoginFormHeader, #txtEmailSuccessHeader {
        font-size: 23px;
    }

    #divBrowserCompatibility {
        left: 36%;
    }

    .pin-input {
        height: 36px;
        width: 36px;
        font-size: 18px;
    }
}

@media (max-width:767px) {
    #login-container {
        width: 100%;
        margin: unset !important;
    }

    #cntLoginForm, #divResetPasswdForm {
        width: 60% !important;
        padding: 25px 0px 0px 0px !important;
        margin: auto !important;
        float: none;
    }

    #txtAppTitle, #txtResetPasswd {
        float: none !important;
    }

    #divBrowserCompatibility {
        top: 15px !important;
        left: 0%;
        right: 0%;
    }

    #bpgLogo {
        float: left !important;
    }

    #cntTitle {
        border: none !important;
    }

    #divTitle {
        text-align: center !important;
        border-bottom: 2px solid white !important;
    }

    #alertMessage {
        position: initial;
        margin-left: 5px;
    }
}

@media (max-width:550px) {
    #cntLoginForm, #divResetPasswdForm {
        width: 90% !important;
        float: left;
    }
}
.login-left-block{
    padding-top: 14px;
    padding-right: 30px;
    margin-top: 100px;
}

.login-flex-center{
    display: flex;
    align-items: center;
    min-height: 600px;
    min-width: 900px;
}
.okta-form .auth-container {
	 margin-top: 0 !important;
	 background-color: transparent !important;
	 color: #fff !important;
	 border: none !important;
	 box-shadow: none !important;
}
 .okta-form .okta-sign-in-header {
	 display: none;
}
 .okta-form .auth-content {
	 padding: 138px 42px 20px !important;
}
 .okta-form .auth-content .okta-form-title, .okta-form .auth-content .okta-form-label {
	 color: #fff !important;
}
 .okta-form .auth-content .auth-footer .link {
	 color: #fff !important;
}
 .okta-form .auth-content .button-primary {
	 background: #d0202e !important;
}
 .okta-form .auth-content .button-primary:hover {
	 background: #bb1c29 !important;
}
 .okta-form .infobox-error {
	 color: red !important;
}
 .signin-content .left-ele {
	 margin: 200px 0 0 0 !important;
}

#oktaLoader{
    display: flex
;
    align-items: center;
    justify-content: center;
    min-height: 150px;
    padding-top: 130px;
    width: 250px;
}
 .lds-spinner {
    color: official;
    display: inline-block;
    position: relative;
    width: 80px;
    height: 80px;
  }
  .lds-spinner div {
    transform-origin: 40px 40px;
    animation: lds-spinner 1.2s linear infinite;
  }
  .lds-spinner div:after {
    content: " ";
    display: block;
    position: absolute;
    top: 3px;
    left: 37px;
    width: 4px;
    height: 14px;
    border-radius: 20%;
    background: #D00527;
  }
  .lds-spinner div:nth-child(1) {
    transform: rotate(0deg);
    animation-delay: -1.1s;
  }
  .lds-spinner div:nth-child(2) {
    transform: rotate(30deg);
    animation-delay: -1s;
  }
  .lds-spinner div:nth-child(3) {
    transform: rotate(60deg);
    animation-delay: -0.9s;
  }
  .lds-spinner div:nth-child(4) {
    transform: rotate(90deg);
    animation-delay: -0.8s;
  }
  .lds-spinner div:nth-child(5) {
    transform: rotate(120deg);
    animation-delay: -0.7s;
  }
  .lds-spinner div:nth-child(6) {
    transform: rotate(150deg);
    animation-delay: -0.6s;
  }
  .lds-spinner div:nth-child(7) {
    transform: rotate(180deg);
    animation-delay: -0.5s;
  }
  .lds-spinner div:nth-child(8) {
    transform: rotate(210deg);
    animation-delay: -0.4s;
  }
  .lds-spinner div:nth-child(9) {
    transform: rotate(240deg);
    animation-delay: -0.3s;
  }
  .lds-spinner div:nth-child(10) {
    transform: rotate(270deg);
    animation-delay: -0.2s;
  }
  .lds-spinner div:nth-child(11) {
    transform: rotate(300deg);
    animation-delay: -0.1s;
  }
  .lds-spinner div:nth-child(12) {
    transform: rotate(330deg);
    animation-delay: 0s;
  }
  @keyframes lds-spinner {
    0% {
      opacity: 1;
    }
    100% {
      opacity: 0;
    }
  }
  