input:focus {
    border: 1px solid rgba(215, 219, 60, 0.6);
    box-shadow: 0 0 0 3px rgba(215, 219, 60, 0.12);
    outline: none;
}

::selection{
  color: #1c2225;
  background-color: rgb(215, 219, 60, 0.9);
}

:-webkit-input-placeholder {
    color: rgba(244,245,246,0.3);
    font-style: italic;
}

:-moz-placeholder {
    color: rgba(244,245,246,0.3);
    font-style: italic;
}

html {
    height: 100%;
    font-size: 100%;
    overflow-y: scroll;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
}

body {
    -webkit-font-smoothing: antialiased;
    font-size: 16px;
    font-smoothing: antialiased;
    height: 100%;
    line-height: 1.5em;
    margin: 0;
    text-align: center;
    font-family: system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
    color: #D8D8D8;
}

#brickwall {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle, rgba(44, 52, 56, 1) 0%, rgba(28, 34, 37, 1) 85%);
    
}

#background-compat {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(10, 10, 10, 0.6);
}

#background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    background-attachment: fixed;
    mix-blend-mode: normal;
}

#blur {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    -webkit-filter: blur(7px);
    filter: blur(7px);
    overflow: hidden;
    z-index: -1;
}

body, input {
    font-family: system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
    color: #D8D8D8;
}

#loginBox {
    background: rgba(18, 18, 18, 0.97);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    width: 400px;
    padding: 2em;
    padding-bottom: 1.5em;
    text-align: center;
    box-sizing: border-box;
    position: fixed;
    left: 50%;
    top: 15%;
    margin-left: -200px;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.7);
    background: none;
}

#loginBox:after {
    content: none;
}

h1 {
    margin: 0;
}

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

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

.valign-helper {
    height: 100%;
    display: inline-block;
    vertical-align: middle;
}

h3 {
    margin: 1em 0;
    text-align: center;
    font-size: 0.85em;
    font-weight: 600;
    color: #b04040;
}

form {
    width: 240px;
    margin: 0 auto;
}

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

fieldset input {
    display: block;
    margin-bottom: 1em;
    background: rgba(40, 40, 40, 0.9);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 10px;
    color: #D8D8D8;
    padding: 8px 12px;
    width: 100%;
}

hr {
    margin: 16px 0;
    border: none;
    height: 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

div.banner {
    color: rgba(216,216,216,0.5);
    line-height: 1.2em;
}

div.banner:not(:empty) {
    margin-bottom: 1em;
}

* {
    box-sizing: border-box;
}

input[type="submit"],
input[type="reset"],
input[type="button"],
.action-button,
.button {
    cursor: pointer;
    display: inline-block;
    vertical-align: bottom;
    height: 32px;
    line-height: 30px;
    border: none;
    padding: 0 16px;
    color: #e8e8e8;
    background-color: #3a3a3a;
    border-radius: 10px;
    font-family: inherit;
    font-size: 0.85em;
    font-weight: 700;
    text-decoration: none;
    transition: filter 0.2s ease, box-shadow 0.2s ease;
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
}

button[type=submit],
input[type="submit"],
.primary.button {
    font-weight: 700;
    color: #e8e8e8;
    width: 100%;
    height: 38px;
    border-radius: 10px;
    margin-top: 4px;
    border: 1px solid rgba(255,255,255,0.12);
    background-color: rgba(40, 40, 40, 0.9);
    /* border: 1px solid rgba(215, 291, 60, 0.5); */
}

button[type=submit]:hover,
input[type=submit]:hover,
input[type=submit]:active {
    filter: brightness(1.25);
    color: #ffffff;
    background-color: #3a3a3a;
}

#poweredBy {
    font-size: 0.8em;
    color: rgba(216,216,216,0.4);
    padding: 5px 15px;
    text-align: center;
    position: fixed;
    bottom: 10px;
    right: 10px;
    box-shadow: 0 0 8px rgba(0,0,0,0.5);
    border-radius: 8px;
    background-color: rgba(20,20,20,0.7);
    border: 1px solid rgba(255,255,255,0.06);
}

#poweredBy a {
    color: inherit;
}

#poweredBy .osticket-logo {
    height: auto;
    width: 55px;
    vertical-align: baseline;
    border: none;
    -webkit-filter: drop-shadow(0 0 4px black) grayscale(100%);
    filter: drop-shadow(0 0 4px black) grayscale(100%);
}

#company {
    position: absolute;
    left: 50%;
    width: 400px;
    margin-left: -200px;
    bottom: -40px;
    font-size: 0.8em;
    color: rgba(216,216,216,0.5);
    text-align: center;
}

#company .content {
    border-radius: 10px;
    background: transparent;
    display: inline-block;
    padding: 0 15px;
    color: #D8D8D8;
}

.external-auth {
    display: inline-block;
    margin-bottom: 4px;
}

.external-auth + .external-auth {
    margin-top: 4px;
}

a.external-sign-in {
    text-decoration: none;
}

.external-auth-box {
    vertical-align: middle;
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.1);
    background: rgba(30,30,30,0.8);
}

.external-auth-icon {
    display: inline-block;
    color: #D8D8D8;
    width: 30px;
    padding: 5px 10px;
    border-right: 1px solid rgba(255,255,255,0.08);
}

.external-auth-name {
    color: #D8D8D8;
    width: 100px;
    padding: 5px 10px;
    line-height: 30px;
    font-size: 11pt;
}

img.sign-in-image {
    border: none;
    max-height: 40px;
    max-width: 200px;
    width: auto;
    height: auto;
}

input[type=text],
input[type=password] {
    border-radius: 10px;
    padding: 8px 12px;
    font-size: 0.85em;
    background: rgba(40, 40, 40, 0.9);
    color: #D8D8D8;
    border: 1px solid rgba(215, 291, 60, 0.5);
}

.hidden {
    display: none;
}

#loading h1{
    color: #D8D8D8;
}

#poweredBy{
    display: none;
}