﻿.loginBackground {
    width: 100vw;
    height: 100vh;
    background: linear-gradient( 90deg,#0f3f64 50%, #0e769d 100%);
    position: absolute;
    top: 0;
    left: 0
}

.loginContainer {
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh
}

.login {
    background: white;
    width: 460px;
    min-height: 100px;
    padding: 15px;
    border-radius: 10px;
    z-index: 10;
}

.loginButton {
    -webkit-appearance: none;
    background-color: #0e769d;
    font-size: 16px;
    width: 100%;
    line-height: 22px;
    border-radius: 6px !important;
    border: none;
    letter-spacing: 0.01em;
    color: white;
    white-space: normal;
    padding: 10px 20px;
    margin-top: 7.5px;
    font-weight: 600;
    box-shadow: 0 0.4em 0.5em -0.4em #bbb;
}

    .loginButton:hover {
        background: #0a5774
    }

    .loginButton:active {
        background: #0a5774
    }

.textboxLogin {
    width: 100%;
    top: 0;
    bottom: 0;
    margin: auto;
    margin-top: 7.5px;
    margin-bottom: 7.5px;
    border: 1px solid #ccc;
    border-radius: 6px;
    padding: 8px 8px;
    border: 1px solid #ccc;
    box-sizing: border-box;
    background-color: white;
    font-size: 16px;
    color: #00213d;
    max-width: 1000px !important
}

    .textboxLogin:focus {
        outline: none !important;
        border: 2px solid #9A9A9A !important;
    }

.sectionMessage, #validationText {
    padding: 10px;
    width: 100%;
    background-color: #e6f8fc;
    color: #00213d;
    border-radius: 8px;
    margin-bottom: 7.5px;
}

#validationText {
    margin-top: 15px;
    margin-bottom: 0px
}

#validationText:empty {
    display: none;
}

.loginLink {
    color: #0e769d
}

    .loginLink:hover {
        cursor: pointer;
        color: #0b6080;
        text-decoration: underline
    }

.loginLogo {
    width: 70%;
    margin-left: 15%;
    margin-right: 15%;
    margin-bottom: 15px;
}

.loginContainer a {
    display: block;
    padding-top: 15px;
}