@font-face {
    font-family: 'Lunchtype21';
    src: url('../fonts/Lunchtype.eot');
    src: url('../fonts/Lunchtype.eot?#iefix') format('embedded-opentype'),
    url('../fonts/Lunchtype.woff2') format('woff2'),
    url('../fonts/Lunchtype.woff') format('woff'),
    url('../fonts/Lunchtype.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Lunchtype21';
    src: url('../fonts/Lunchtype-Medium.eot');
    src: url('../fonts/Lunchtype-Medium.eot?#iefix') format('embedded-opentype'),
    url('../fonts/Lunchtype-Medium.woff2') format('woff2'),
    url('../fonts/Lunchtype-Medium.woff') format('woff'),
    url('../fonts/Lunchtype-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Lunchtype21';
    src: url('../fonts/Lunchtype-Bold.eot');
    src: url('../fonts/Lunchtype-Bold.eot?#iefix') format('embedded-opentype'),
    url('../fonts/Lunchtype-Bold.woff2') format('woff2'),
    url('../fonts/Lunchtype-Bold.woff') format('woff'),
    url('../fonts/Lunchtype-Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

body {
    font-family: Lunchtype21;
    width: auto;
    height: 100%;
    background: #090021;
}
::-webkit-scrollbar {
    width: 5px;
}

::-webkit-scrollbar-track {
    box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
}

::-webkit-scrollbar-thumb {
    background-color: #00C3F9;
    border-radius: 3px;
}
input {
    box-sizing: border-box;
    font-family: Lunchtype21;
    height: 47px;
    width: 100%;
    border: 1px solid #01C0F4;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0;
    line-height: 18px;
    padding: 15px;
    margin-bottom: 15px;
    background-color: #0A0022;
    color: white;
}
a {
    color: #01C0F4;
}
input[type="checkbox"] {
    height: auto;
    width: auto;
    margin-bottom: 5px;
}
button[type="submit"], .submit-button {
    height: 45px;
    width: auto;
    padding: 0 20px;
    border-radius: 10px;
    background-color: #FF0072;
    text-align: center;
    line-height: 45px;
    color: #FFFFFF;
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 0;
    border: none;
    margin-top: 30px;
    cursor: pointer;
}
.submit-button {
    margin-top: 5px;
    margin-bottom: 15px;
}
#form-signin-code .submit-button{
    display: block;
    margin: auto;
    margin-bottom: 15px;
}
button:disabled,
button[disabled]{
    background-color: #696672;
    cursor: not-allowed;
}

.form-container {
    color: white;
    width: 519px;
    border-radius: 10px;
    background-color: #090021;
    text-align: center;
    margin: 50px auto;
    padding: 10px 45px;
    padding-bottom: 25px;
    box-sizing: border-box;
    min-height: 300px;
}
.form-logo {
    text-align: center;
    padding: 20px 0;
    border-bottom: 1px solid #00C3F9;
}
.form-title-icon {
    text-align: center;
    display: none;
    margin-top: 25px;
    
}
.align-left {
    text-align: left;
}
.align-center {
    text-align: center;
}
.form-title {
    color: #00C3F9;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0;
    line-height: 19px;
    text-align: center;
    margin: 20px auto;
}

.notification-message {
    height: 22px;
    opacity: 0.4;
    color: #FFFFFF;
    font-family: Lunchtype21;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0;
    line-height: 14px;
}
.error {
    color: white;
    padding-left: 25px;
    position: relative;
    display: none;
    margin: 0;
    text-align: left;
    font-size: 14px;
    margin-bottom: 17px;
    line-height: 14px;
}

.error:before {
    content: '⬤';
    color: white;
    position: absolute;
    left: 5px;
    top: -1px;
    font-size: 10px;
}
.error.highlighted, .error.highlighted:before {
    color: #FF0072;
}
.form-label {
    font-size:14px;
    line-height: 18px;
    font-family: Lunchtype21;
    margin-bottom: 15px;
    display: block;
    position: relative;
    text-indent: 28px;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.pretty-checkbox input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 15px;
    width: 15px;
    border-radius: 4px;
    border: 1px solid #00C3F9;
}

.pretty-checkbox:hover input ~ .checkmark {
    color: #ccc;
}

.pretty-checkbox input:checked ~ .checkmark {
    color: #2196F3;
}

.checkmark:after {
    content: '⬤';
    position: absolute;
    display: none;
    top: -2px;
    left: -25px;
    font-size: 11px;
}

.pretty-checkbox input:checked ~ .checkmark:after {
    display: block;
}
#form-signin-code {
    display: none;
    margin: 30px auto 0;
}
#form-signin-code input{
    font-size: 28px;
    letter-spacing: 15px;
    color: #00C3F9;
    padding: 15px 25px;
    font-weight: normal;
    font-family: sans-serif;
    max-width: 238px;
    text-align: center;
}
.hide {
    display: none;
}
.show {
    display: block;
}
#form-footer {
    border-top: 1px solid #00C3F9;
    text-align: left;
    padding: 20px;
    font-size: 14px;
}
#forgot-password-link, #go-to-login{
    padding: 20px;
    font-size: 14px;
}
#go-to-login {
    margin-top: 75px;
    display: none;
}
#form-title-icon-img.spinning {
    animation-name: spin;
    animation-duration: 2500ms;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
}
#form-footer.go-to-login, #form-footer.go-to-login a {
    font-size: 16px;
    text-align: center;
    font-family: Lunchtype21;
    font-weight: 500;
    border: none;
    text-decoration: none;
    margin-top: 50px;
}
#terms-text {
    display: none;
    max-height: 400px;
    overflow-y: scroll;
    padding-right: 15px;
    line-height: 18px;
    font-size: 12px;
}
#terms-text h1{
    font-size: 20px;
}
#back-link {
    display: none;
    color:#00C3F9;
    float: left;
    font-size: 30px;
    margin-top: 9px;
    margin-right: -30px;
    cursor: pointer;
}
@keyframes spin {
    from {
        transform:rotate(360deg);
    }
    to {
        transform:rotate(0deg);
    }
}
@media screen and (max-width: 600px) {
    .form-container {
        width: calc(100% - 30px);
        margin: 20px auto;
    }
    .form-title {
        width: auto;
    }
}
#form-footer-bad-credentials {
    display: none;
    text-align: center !important;
    border-top: 1px solid #00C3F9;
    padding: 20px;
    font-size: 14px;
}
