/* Default font-family for all elements */
* {
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

/* font styles for the login page */
body {
    color: #374254;
    background-color: #06111a;
    letter-spacing: .04rem;
}

body > .container {
    width: 500px;
    margin: 10vh auto 0;
}

.login-image {
    display: block;
    margin: auto;
    max-width: none;
    height:170px
}

button {
    letter-spacing: .04rem;
    text-transform: uppercase;
}

button[type="submit"] {
    margin-top: 30px;
}

.sso-button {
    width: 100%;
    border: 1px solid #F9FAFB;
}

/* full-screen background image */
.bg-image {
    background-image: url(../images/background.jpg);
    position: absolute;
    z-index: -1;
    height: 100vh;
    min-height: 700px;
    min-width: 600px;
    width: 100vw;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
}

.model-number-flyout {
    position: fixed;
    bottom: 10vh;
    right: 0;
    background: #2CA7DF;
    padding: 20px;
    font-size: 30px;
}

.model-number-flyout > span {
    color: #ffffff;
    margin: 0 35px;
}

@media screen and (max-width: 1250px) {
    .model-number-flyout {
        background: transparent;
        top: 0;
        font-size: 24px;
    }
}

h3 {
    margin: 0 0 16px;
    font-weight: 400;
    font-size: 22px;
}

hr {
    margin: 20px 0;
}

.form-container {
    padding: 0 30px;
}

.form-container > div {
    background: #F9FAFB;
    border-radius: 8px;
    padding: 20px 30px;
}

label {
    font-size: 12px;
    font-weight: 300;
}

/* Full-width inputs */
input[type=text], input[type=password] {
    width: 100%;
    padding: 9px 20px;
    margin: 8px 0;
    display: inline-block;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}

/* Set a style for all buttons */
button {
    background: #4B6D99;
    color: white;
    padding: 10px 16px;
    margin: 8px 0;
    border: none;
    cursor: pointer;
    border-radius: 5px;
}

/* Add a hover effect for buttons */
button:hover {
    opacity: 0.8;
}

/* Set a different style for buttons */
button.border {
    background-color: white;
    border: 2px solid #0099fe;
    color: black;
}

/* Make it clear when a button is disabled */
button.border:disabled {
    border: 2px solid #D2D6DB;
    color: #D2D6DB;
}

/* Extra style for the cancel button (red) */
.cancelbtn {
    width: auto;
    padding: 10px 18px;
    background-color: #f44336;
}

/* Center the avatar image inside this container */
.imgcontainer {
    text-align: center;
    margin: 24px 0 12px 0;
}

/* Avatar image */
img.avatar {
    width: 40%;
    border-radius: 50%;
}

/* Add padding to containers */
.container {
    padding: 16px;
}

.login-form {
    padding: 0;
}

.error-message {
    color: #f44336;
    text-align: center;
    margin: 12px 0;
}

/* separate styles for banner button */
.banner-button {
    margin: auto;
    display: block;
    padding: 10px 95px;
}


.banner {
    display: block;
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background: white;
}

.banner > div {
    position: relative;
    z-index: 1;
    margin: 10% 20%;
    background: #F9FAFB;
    border-radius: 8px;
    padding: 60px 40px;
}

/* overlay banner background above the login form */
.banner > .bg-image {
    z-index: 0;
}

.banner > div > p {
    margin-bottom: 30px;
    padding: 20px;
    border: 1px solid #D0D9E5;
}

/* The "Forgot password" text */
span.psw {
    float: right;
    padding-top: 16px;
}

/* Change styles for span and cancel button on extra small screens */
@media screen and (max-width: 300px) {
    span.psw {
        display: block;
        float: none;
    }
    .cancelbtn {
        width: 100%;
    }
}
