.login-page {
    display:flex;
    flex-direction: column;
}
@media (min-width: 900px) {
    .login-page {
        flex-direction: row;
        flex-wrap: nowrap;
        align-items: center;
    }
}
.bg-login {
    background-color: #F4F5F8;
}
.login-section-wrapper {
    margin:1rem;
    height: 90vh;
    display: flex;
    justify-content: center;
    flex-wrap: nowrap;
    flex-direction: column;
}
.m-section, .login-section-wrapper {
    flex: 1 1 50%;
    min-height: 40rem;
}
.login-section, .login-section-form {
    display: flex;
    flex-wrap: nowrap;
    flex-direction: column;
}
.login-section {
    align-items: center;
    z-index: 2;
}
.login-section-form {
    background-color: #ffffff;
    border:1px solid #dedede;
    border-radius: 0.3rem;
    width: 26rem;
    padding:1rem;
    text-align:left;
}
.login-inputs input:not([type="checkbox"]), .login-inputs button {
    font-weight: normal;
    padding:0.5rem;
    font-size:1rem;
    border-radius: 3px;
    margin-top:0.5rem;
    margin-bottom:1rem;
}
.login-inputs input[type="text"], .login-inputs input[type="password"] {
    width:100%;
    background-color: transparent;
    border: 1px solid #dedede;
    outline: 0;
}
.login-inputs input[type="text"]:focus, .login-inputs input[type="password"]:focus {
    box-shadow: 0 0 2px 1px #006FD1;
}
.login-inputs input[type="submit"] {
    background-color: #006FD1;
    color: white;
}
.login-section-form input[type="submit"] {
    width:100%;
}
.login-section-form div {
    display: flex;
}
.login-inputs input[type="checkbox"] {
    margin-right:0.5rem;
}
.login-section .login-section-logo {
    width: 15rem;
    max-width: 90vw;
    position: absolute;
    margin-top: -11rem;
}
.login-section .login-section-logo img {
    width:100%;
}
.login-section-links {
    margin-top:1rem;
}
.login-section-links span {
    color:#006FD1;
    cursor:pointer;
    font-size:0.8rem;
}

.forgot-password {
    position: absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    overflow: hidden;
    background-color: rgba(200, 200, 200, 0.7);
    display:flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 3;
}
.forgot-password div.login-inputs {
    background-color: #ffffff;
    border:1px solid #dedede;
    border-radius: 0.3rem;
    margin-top:2rem;
    width: 25rem;
    padding:1rem;
    text-align:left;
}
.forgot-password h2, .confirm h2 {
    font-size:1.4rem;
    margin:0.5rem 0 !important;
}
.forgot-password div, .confirm div {
    line-height: 150%;
}
.forgot-password form label, .confirm form label {
    margin-top:1rem;
    display: block;
}
.forgot-password-links {
    display: flex;
    justify-content: space-between;
}
.forgot-password-links button {
    border: 1px solid #dedede;
    outline: 0;
    color:#333333;
}
.forgot-password-links button, .forgot-password-links input[type="submit"] {
    width: 12rem;
}
.login-inputs input[type="submit"]:hover, .forgot-password-links button:hover, .forgot-password-links input[type="submit"]:hover {
    opacity: 0.7;
    cursor: pointer;
}
.login-section p {
    margin-top:2rem;
    width: 25rem;
    text-align: center;
}
.login-section .errorMessage, .forgot-password .errorMessage {
    margin-bottom:1rem;
    color:indianred;
    font-weight: bold;
}
.login-section .errorMessage {
    position:absolute;
    height: 3rem;
    margin-top: -3.5rem;
    text-align: center;
}
.m-section {
    align-self: stretch;
    min-height:100vh;
}
.m-section iframe {
    border:0;
    width:100%;
    min-height:100vh;
    height:100%;
}
.login-section-footer {
    position: absolute;
    width: 99%;
    height: 31rem;
    top: 0;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    z-index: 1;
}
@media (min-width: 900px) {
    .login-section-footer.half {
        width: 49%;
    }
    .login-section-footer {
        height: 96vh;
        min-height: 31rem;
    }
}
.login-section-footer > div {
    display: flex;
    width: 30rem;
    justify-content: space-around;
}
