body {
    background-image: url(../images/login-bg.png);
    background-repeat: repeat;
    background-color: #00518E;
    font-family: "Raleway", "Tahoma", "Arial", sans-serif;
    font-weight: 200;
}

.login-box-outer {
    width: 400px;
    height: 320px;
    position: absolute;
    left: 50%;
    top: 50%;
    margin: -160px 0 0 -200px;
}

.login-box {
    background-color: #FFFFFF;
    padding: 25px;
    border-radius: 10px;
}

.login-box p {
    font-size: 13px;
    margin-top: 5px;
    font-weight: 500;
    color: #FA0029;
}

.login-box-shadow {
    width: 378px;
    margin-left: 11px;
    height: 2px;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0.5) 100%); /* W3C */
}

.login-box-powered {
    margin-top: 10px;
    color: #ffffff;
    font-family: "Raleway", "Tahoma", "Arial", sans-serif;
    font-weight: 200;
    font-size: 10px;
    text-align: center;

    opacity: 0.85;
}

h3 {
    margin-top: 0;
    margin-bottom: 10px;
    font-weight: 500;
}

.text-input {
    width: 100%;
    border: 1px solid #CCCCCC;
    padding: 10px;
    margin-top: 5px;
    font-family: "Raleway", "Tahoma", "Arial", sans-serif;
    font-weight: 200;
    font-size: 13px;
}

.password-input {
    width: 100%;
    border: 1px solid #CCCCCC;
    padding: 10px;
    margin-top: 5px;
    font-family: "Tahoma", "Arial", sans-serif;
    font-weight: 200;
    font-size: 13px;
}

.login-button {
    font-family: "Raleway", "Tahoma", "Arial", sans-serif;
    font-weight: 500;
    font-size: 13px;
    border: 1px solid #cccccc;
    background-color: #eeeeee;
    padding: 10px 40px 10px 40px;
    color: #000000;
    border-radius: 4px;
    box-shadow: 3px 3px #4a4a4a;
    margin-top: .5em;
}

.login-button-full-width {
    width: 100%;
}

.login-button:active {
    transform: translate(3px, 3px);
    box-shadow: 0 0;
}

.login-button:disabled {
    background-color: #4a4a4a;
    color: #FFFFFF;
    transform: translate(3px, 3px);
    box-shadow: 0 0;
}

/* This is the space for the spinner to appear, applied to the button */
.spin {
    display: inline-block;
}

/* position of the spinner when it appears, you might have to change these values */
.spin .spinner {
    position: relative;
}

/* spinner animation */
@keyframes spinner {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* The actual spinner element is a pseudo-element */
.spin .spinner::before {
    content: "";
    width: 1.5em; /* Size of the spinner */
    height: 1.5em; /* Change as desired */
    border-radius: 50%;
    border: solid .35em #FFF; /* Thickness/color of spinner track */
    border-bottom-color: #999; /* Color of variant spinner piece */
    animation: .8s linear infinite spinner; /* speed of spinner */
    transform: translate(-50%, -50%);
    will-change: transform;

    position: absolute;
    right: .5em;
    margin-top: -3px;
}

/* optional, but it will affect the size if changed */
*, *::before, *::after {
    box-sizing: border-box;
}


.hr {
    width: 100%;
    height: 1px;
    margin-bottom: 10px;
}

.oidc-links {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: space-around;
}

.middle-separator {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    padding: 1em 0;
}

.middle-side {
    flex-grow: 2;
}

.middle-label {
    flex-grow: 1;
    text-align: center;
}

.access-denied-icon {
    text-align: center;
    font-size: 5em;
}

.primary-button {
    background-color: #002c5e;
    border-radius: 5px;
    color: #ffffff;
}

.primary-button.active {
    background-color: #004F8B;
    box-shadow: 0 2px #002c5e;
}

.primary-button.x-clicked {
    background-color: #004F8B;
    box-shadow: 0 0;
    transform: translate(0px, 2px);
}