﻿#login-container {
    display: flex;
    flex-direction: column;
    height: 100vh;
    justify-content: center;
}

.support-text {
    margin: 0 auto;
    width: 50%;
    font-size: 12px;
}

.disclaimer-training {
    margin-top: 1em;
    cursor: pointer;
}

    .disclaimer-training label {
        color: #7697BD;
        cursor: pointer;
        text-decoration: underline;
    }

    .disclaimer-training img {
        height: 10px;
        margin-left: 5px;
    }

.login-header {
    width: 50%;
    min-width: 625px;
    border: 5px solid #003057;
    margin: 0 auto;
    background-color: #7697BD;
    color: #003057;
    font-size: xx-large;
    min-height: 70px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-banner {
    padding: 0.5em;
}

.header-logo img {
    height: 60px;
}

.login-body {
    width: 50%;
    min-width: 625px;
    border: 5px solid #003057;
    margin: 0 auto;
    background-color: #FFF;
    display: flex;
}

.testing-message {
    color: red;
    font-weight: bold;
    text-align: center;
    margin-bottom: 1em;
}

.login-image {
    width: 70%;
    justify-content: space-between;
    align-items: center;
    display: flex;
    padding: 0.5em;
}

    .login-image img {
        height: 200px;
        margin: 0 auto;
    }

.login-box {
    border: 5px solid #003057;
    margin: 1em;
    width: 300px;
}

.members-header {
    background-color: #7697BD;
    font-size: large;
    color: white;
    padding: 0.5em;
}

.login-controls {
    margin: 1em;
}

    .login-controls input[type=text], .login-controls input[type=password] {
        line-height: 25px;
        width: 92%;
    }

.control-row {
    margin-bottom: 0.5em;
}

.login-button {
    cursor: pointer;
    border-radius: 4px;
    font-weight: bold;
    width: 100px;
    padding: 10px 0;
    box-shadow: 0 0 10px rgba(104, 85, 224, 0.2);
    transition: 0.2s;
    color: white;
    background-color: #7697BD;
    border: 1px solid #003057;
    display: flow-root;
    margin: 3em auto 1em auto;
}

    .login-button:hover {
        color: #7697BD;
        box-shadow: 0 0 10px rgba(104, 85, 224, 0.6);
        background-color: white;
    }

.validation-summary {
    margin-left: 1em;
    margin-bottom: 1em;
}
