﻿/*----------Generic----------*/

.hidden {
    display: none;
}


/*----------Login Page----------*/

.blue {
    margin-left: 56px;
    width: 59px;
    height: 25px;
    object-fit: contain;
}

div#loginPage {
    box-sizing: border-box;
    width: 100%;
    height: 100%;
    padding-top: 50px;
    background: linear-gradient(to bottom, #0037ff 0%, #0037ff 35.5%, #f9fafa 35.5%, #f9fafa 100%);
}

div#loginPage * {
    -webkit-transition: all 250ms ease;
    -moz-transition: all 250ms ease;
    -o-transition: all 250ms ease;
    transition: all 250ms ease;
}

div#loginPage div#loginPage-container {
    background-color: #ffffff;
    box-shadow: 0 0 15px 0 rgba(38, 50, 56, 0.08);
    width: 600px;
    height: 420px;
    border-radius: 6px;
    margin-top: 110px;
    margin-right: auto !important;
    margin-left: auto !important;
}

div#loginPage div#loginLogo {
    position: relative;
    width: 100%;
    height: 84px;
    text-align: center;
}

div#loginPage div#loginLogo a#btnloginLogo {
    position: absolute;
    margin: -84px;
    width: 168px;
    height: 168px;
}

a#btnloginLogo:hover {
    opacity: 1;
}


/*----------Loading Spinner----------*/

div#loginLoader-container {
    height: 25px;
    text-align: center;
}

div#loginLoader-container #spinner > div {
    width: 18px;
    height: 18px;
    background-color: #FFD100;
    border-radius: 100%;
    display: inline-block;
    -webkit-animation: sk-bouncedelay 1.4s infinite ease-in-out both;
    animation: sk-bouncedelay 1.4s infinite ease-in-out both;
}

div#loginLoader-container #spinner.bounce1 {
    -webkit-animation-delay: -0.32s;
    animation-delay: -0.32s;
}

div#loginLoader-container #spinner .bounce2 {
    -webkit-animation-delay: -0.16s;
    animation-delay: -0.16s;
}

@-webkit-keyframes sk-bouncedelay {
    0%, 80%, 100% {
        -webkit-transform: scale(0)
    }

    40% {
        -webkit-transform: scale(1.0)
    }
}

@keyframes sk-bouncedelay {
    0%, 80%, 100% {
        -webkit-transform: scale(0);
        transform: scale(0);
    }

    40% {
        -webkit-transform: scale(1.0);
        transform: scale(1.0);
    }
}


/*----------Submit Button----------*/

#loginPage-container div#submit-container {
    margin-top: 30px;
    height: 56px;
}

#loginPage-container div#submit-container .errorMessages {
    display: inline-block;
    font-family: 'Roboto', sans-serif;
    font-size: 13px;
    font-weight: 600;
    font-style: normal;
    font-stretch: normal;
    line-height: normal;
    letter-spacing: normal;
    color: red;
    width: 300px;
    text-align: left;
}

#loginPage-container div#submit-container input[type=submit].submitButton {
    float: right;
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    font-weight: 600;
    font-style: normal;
    font-stretch: normal;
    line-height: normal;
    letter-spacing: normal;
    width: 140px;
    height: 56px;
    border-radius: 4px;
    background: #0037ff;
    border: none;
    color: #ffffff;
}

#loginPage-container div#submit-container input[type=submit].submitButton:hover {
    background: #0032E6;
}


#loginPage-container div#submit-container input[type=submit].submitButton:active {
    background: #002CCC;
}

#loginPage-container div#submit-container input[type=submit].submitButton:focus {
    outline: 0;
}


/*----------Labels & Inputs----------*/

#loginPage-container .row {
    margin-top: 15px;
}

#loginPage-container label {
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    font-weight: 600;
    font-style: normal;
    font-stretch: normal;
    line-height: normal;
    letter-spacing: normal;
    color: #6d6e70;
}

#loginPage-container input[type="text"], input[type="password"] {
    width: 490px;
    height: 56px;
    border-radius: 4px;
    background-color: #ecf1ff;
    border: none;
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    font-weight: 600;
    font-style: normal;
    font-stretch: normal;
    line-height: normal;
    letter-spacing: normal;
    color: #000000;
    padding: 23px 23px;
    margin-top: 6px;
}

#loginPage-container input[type="text"]:focus, input[type="password"]:focus {
    outline: 1px solid #0037ff;
}


/*----------Containers & Transitions----------------*/


#loginPage-container #outerContainer {
    position: relative;
    height: calc(100% - 109px);
    padding: 0 55px;
    overflow: hidden;
}

#loginPage-container #outerContainer .innerContainer {
    position: absolute;
    width: 490px;
    transition: 1s ease;
}

#loginPage-container #outerContainer .innerContainer.container-left {
    transform: translateX(-100%);
    opacity: 0;
}

#loginPage-container #outerContainer .innerContainer.container-right {
    transform: translateX(100%);
    opacity: 0;
}


/*----------Forgot Password----------*/

#forgotPassword-container {
    text-align: center;
    padding: 10px;
}

#forgotPassword-container input[type=submit]#btnForgotPassword {
    font-family: 'Roboto', sans-serif;
    letter-spacing: 0;
    color: gray;
    font-size: 13px;
    border: none;
    background: none;
}

#forgotPassword-container input[type=submit]#btnForgotPassword:focus {
    outline: 0;
}

#loginPage-container #emailSent-container {
    text-align: center;
    margin-top: 100px;
}

#loginPage-container #emailSent-container label {
    font-size: 30px;
    font-weight: 400;
    color: #6d6e70;
}

#loginPage-container #emailSent-container {
    text-align: center;
    margin-top: 85px;
}

#loginPage-container #emailSent-container label {
    display: block;
    font-size: 30px;
    font-weight: 400;
    color: #6d6e70;
}

#loginPage-container #emailSent-container input[type=submit] {
    font-family: 'Roboto', sans-serif;
    letter-spacing: 0;
    color: gray;
    font-size: 16px;
    border: none;
    background: none;
    margin-top: 60px;
}

#loginPage-container #emailSent-container input[type=submit]:focus {
    outline: 0;
}


/*----------Reset Password----------*/

div#loginPage div#loginPage-container div#resetPassform {
    width: 490px;
}

.resetPass-container {
    height: 450px !important;
}

.resetPass-container #resetPass-title {
    width: 100%;
    font-family: 'Roboto', sans-serif;
    text-align: center;
    font-weight: 600;
    font-style: normal;
    font-stretch: normal;
    line-height: normal;
    letter-spacing: normal;
    object-fit: contain;
    margin-bottom: 25px;
}

.resetPass-container #resetPass-title label {
    font-size: 25px;
    font-weight: 600;
    color: #6d6e70;
}

#loginPage-container .resetPass-select {
    width: 100%;
    height: 56px;
    appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
    background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zd…AwIDAgMCAyIDBsNC00YTEgMSAwIDAgMC0xLTJIMWExIDEgMCAwIDAtMSAyeiIvPjwvc3ZnPg==);
    background-position: calc(100% - 22px) center;
    background-repeat: no-repeat;
    cursor: pointer;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    padding: 12px 23px;
    padding-right: 46px;
    background-color: #ecf1ff;
    border-radius: 4px;
    border: 0;
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    font-weight: normal;
    font-style: normal;
    font-stretch: normal;
    line-height: normal;
    letter-spacing: normal;
    color: #6d6e70;
}

#loginPage-container .resetPass-select:focus {
    outline: 1px solid #0037ff;
    outline-offset: -2px;
}

