/* == START Google Fonts == */
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;600&family=Open+Sans:wght@400;600&display=swap');
/* == END Google Fonts == */

/* == START Body & Background == */
body,
input {
    font-family: 'Open Sans', sans-serif;
    color: #555555;
}

body {
    background: none;
    margin: 0;
    padding: 0;
    height: 100%;
}

html {
    height: 100%;
}
/* == END Body & Background == */

/* == START Background Image == */
#brickwall {
    background-image: url('../images/tsc-backdrop.webp');
    background-size: cover;
    background-position: center center;
    background-attachment: fixed;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}
/* == END Background Image == */

/* == START Login Box == */
#loginBox {
    width: 380px;
    padding: 0;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    margin: 0;
    border-radius: 6px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.45);
    background-color: rgba(255, 255, 255, 0.96);
    overflow: hidden;
    z-index: 10;
}

#loginBox:after {
    display: none;
}
/* == END Login Box == */

/* == START Logo Area == */
#logo {
    background-color: #444444;
    margin: 0;
    padding: 20px;
    text-align: center;
}

#logo a {
    display: block;
    height: auto;
    text-decoration: none;
}

#logo a img {
    max-height: 60px;
    max-width: 220px;
    width: auto;
    height: auto;
    vertical-align: middle;
    border: none;
    outline: none;
}

.valign-helper {
    display: none;
}
/* == END Logo Area == */

/* == START Login Message == */
h3#login-message {
    font-family: 'Open Sans', sans-serif;
    font-size: 0.85em;
    font-weight: 600;
    color: #e66a00;
    margin: 14px 20px 0 20px;
    text-align: center;
}
/* == END Login Message == */

/* == START Form & Fields == */
form#login {
    width: auto;
    margin: 0;
    padding: 16px 24px 20px 24px;
}

fieldset {
    border: none;
    margin: 0;
    padding: 0;
}

fieldset input[type="text"],
fieldset input[type="password"] {
    display: block;
    width: 100%;
    margin-bottom: 12px;
    padding: 9px 10px;
    border: 1px solid #cccccc;
    border-radius: 4px;
    background: #ffffff;
    font-family: 'Open Sans', sans-serif;
    font-size: 0.85em;
    color: #555555;
    box-sizing: border-box;
}

input:focus {
    border: 1px solid #2da0ce;
    box-shadow: 0 0 4px rgba(45, 160, 206, 0.5);
    outline: none;
}
/* == END Form & Fields == */

/* == START Submit Button == */
button.submit.button {
    background-color: #2da0ce;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    padding: 8px 18px;
    font-family: 'Oswald', sans-serif;
    font-size: 0.9em;
    font-weight: 400;
    letter-spacing: 0.04em;
    cursor: pointer;
    transition: background-color 0.2s ease;
    height: auto;
    line-height: 1.4;
}

button.submit.button:hover {
    background-color: #96c832;
    color: #ffffff;
    box-shadow: none;
}
/* == END Submit Button == */

/* == START Forgot Password Link == */
h3 a#reset-link {
    font-size: 0.8em;
    color: #2da0ce;
    font-family: 'Open Sans', sans-serif;
    font-weight: normal;
    text-decoration: none;
}

h3 a#reset-link:hover {
    color: #e66a00;
    text-decoration: underline;
}
/* == END Forgot Password Link == */

/* == START Company Copyright == */
#company {
    background-color: #444444;
    position: static;
    width: auto;
    margin: 0;
    padding: 10px 0;
    text-align: center;
    bottom: auto;
    left: auto;
}

#company .content {
    background: none;
    box-shadow: none;
    text-shadow: none;
    color: #aaaaaa;
    font-size: 0.75em;
    display: inline-block;
    padding: 0;
    border-radius: 0;
}
/* == END Company Copyright == */

/* == START Responsive == */
@media (max-width: 440px) {
    #loginBox {
        width: 94vw;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

    form#login {
        padding: 14px 16px 18px 16px;
    }
}
/* == END Responsive == */

/* == START Hide Blur Overlay == */
#blur,
#background {
    display: none;
}
/* == END Hide Blur Overlay == */