body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: white !important;
}

.loginPageContainer {
    display: flex;
    flex-direction: column;
    height: 100vh;
    justify-content: center;
}

form {
    padding-left: 30%;
    padding-right: 30%;
}

/* Full-width inputs */
input[type=text], input[type=password] {
    width: 100%;
    padding: 12px 20px;
    margin: .75em 0;
    display: inline-block;
    border: 1px solid #ccc;
    border-radius: .25em;
    box-sizing: border-box;
    text-align: center;
}

/* chrome - overriding auto-filled input background colour in */
input, input:-webkit-autofill {
    -webkit-box-shadow: 0 0 0px 1000px white inset;
}

#btnLogin:hover {
    opacity: 0.8;
}

/* login button */
#btnLogin {
    border-radius: .25em;
    background-color: #4CAF50;
    color: white;
    padding: 14px 20px;
    margin: 8px 0;
    border: none;
    cursor: pointer;
    width: 100%;
}

.imgcontainer {
    text-align: center;
    margin-bottom: 1em;
}

img.loginLogo {
    width: 25%;
}

#loginContainer {
    margin-top: .5em;
}

#loginErrorMessage {
    display: none;
    border: 1px solid red;
    border-radius: .25em;
    padding: 1em;
    text-align: center;
    justify-content: center;
    font-weight: 700;
    color: crimson;
}

#buildString {
    text-align: center;
    color: grey;
    font-size: smaller;
}

/* Add padding to containers */
.container {
    padding: 16px;
    text-align: center;
}

/* Change styles for span and cancel button on extra small screens */
@media screen and (max-width: 401px) {
    form {
        padding-left: 5%;
        padding-right: 5%;
    }
}

.noSupport {
    display: none;
}

.title,
.subTitle {
    text-align: center;
}
.title {
    font-size: 150%;
    font-weight: 700;
    color: black;
}
.subTitle {
    color: gray;
}