.logon {
    transition-duration: .2s;
    transition-timing-function: cubic-bezier(.4, 0, .2, 1);
}

body {
    background: linear-gradient(90deg, var(--sftl-blue-10) -30%, var(--sftl-blue) 100%);
    /*font-family: "Bitter", serif;*/
    font-size: 1rem;
    line-height: 23px;
    color: var(--gray-30);
}

.logon p, li {
    color: var(--gray-20);
    font-family: "Bitter", "serif";
    font-size: 14px;
}

.logon p {
    margin-bottom: 1em;

}

.logon a {
    white-space: nowrap;
}

.logon label {
    color: var(--gray-20);
    font-family: "Bitter", "serif";
    font-size: 18px;
    font-weight: 400;
}

.logon ul {
    padding-left: 20px;
    padding-top: 10px;
    padding-bottom: 10px;
}

.logon li {
    list-style-type: disc;
    padding-left: 5px;
}

.logon h1, h2, h3 {
    color: var(--gray-30);
    font-family: Gotham, Verdana;
    text-transform: uppercase;
    font-size: 28px;
    font-weight: 700;
    line-height: 32px;
    margin-bottom: 10px;
}

.logon h3 {
    font-size: 20px;
    line-height: 32px;
    margin-bottom: 10px;
}


.logon .logon-card {
    max-width: 1300px;
    background-color: white;
    margin-top: 50px;
    margin-right: auto;
    margin-left: auto;
    border-radius: .25rem;
    padding: 40px;
}

.logon .csam-button {
    width: 100%;
    background-color: white;
    border-radius: .25rem;
    padding: 5px;

    transition-duration: .2s;
    transition-timing-function: cubic-bezier(.4, 0, .2, 1);
}

.logon .csam-button:hover {
    background-color: var(--sftl-blue-transparent);
}

.small-screen-hide {
    display: none;
}

.small-screen-show {
    display: inline;
}

@media (min-width: 768px) {
    .small-screen-hide {
        display: inline;
    }

    .small-screen-show {
        display: none;
    }
}

.logon .login-error:before {
    content: "⚠";
    font-size: 30px;
}
.logon .login-error {
    background-color: var(--sftl-orange);
    padding: 1em;
    color: white;
    border-radius: 5px;
}

.logon .login-error p {
    color: white;
}
.logon .login-error a {
    color: white;
    text-decoration: underline;
}