﻿/* Login Page styles
-------------------------------------------------- */

@font-face {
    font-family: 'Blender Pro';
    src: url(/StaticFiles/a082fd3df68a0b54e0d4d794bc38d268.woff);
    src: url(/StaticFiles/a082fd3df68a0b54e0d4d794bc38d268.woff2);
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: 'Blender Pro';
    src: url(/StaticFiles/335787aa6f57d71cabe8eb5dc89c6d6b.woff);
    src: url(/StaticFiles/335787aa6f57d71cabe8eb5dc89c6d6b.woff2);
    font-weight: normal;
    font-style: normal;
}

.login-container {
    display: flex;
    flex-direction: column;
    width: 100%;
    border-top: 5px solid #e30514;
    margin-bottom: 0;
    padding-bottom: 80px;
    margin-top: -2px;
}

.login-middle-section {
    display: inline-flex;
    flex-direction: row;
    width: 100%;
    margin-top: 0;
    padding-top: 0;
    padding-bottom: 5px;
    border-left: 2px solid #d0d0d0;
}

.login-line-div {
    display: inline-flex;
    flex-direction: row;
    height: 85px;
    width: 100%;
    margin-left: 30px;
    border-bottom: 2px solid #d0d0d0;
}

.red-login-line-part {
    z-index: 1;
}

.red-login-line-part::before {
    position: absolute;
    content: '';
    left: 32px;
    top: 85px;
    z-index: 0;
    height: 20px;
    width: 40px;
    border-top: 4px solid #e30514;
}

.login-support-box {
    display: inline-flex;
    height: 85px;
    justify-content: center;
    flex-direction: column;
    text-align: right;
    color: #ffffff;
    background-color: #e30514;
    font-family: 'Blender Pro';
    font-weight: bold;
    padding-right: 26px;
    width: 240px;
}

.login-support-box span {
    height: 20px;
}

.login-logo {
    width: 100%;
    height: auto;
    max-width: 200px;
    object-fit: cover;
    overflow: hidden;
    align-self: center;
}

.login-info-container {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    margin-left: auto;
}

.login-section {
    margin-left: 35px;
    font-family: 'Blender Pro';
}

.login-title {
    font-size: 48px;
    margin-bottom: 6px;
}

.login-input-container {
    display: flex;
    flex-direction: column;
    width: 400px;
    border: 1px solid black;
    border-radius: 4px;
    padding: 8px 16px;
}

.login-label {
    font-size: 16px;
    font-weight: bold;
    padding-left: 2px;
    padding-right: 2px;
}

.login-input {
    font-size: 16px;
    outline: none;
    border: none;
    padding-left: 2px;
    padding-right: 2px;
}

.login-input:focus {
    outline: none;
}

.login-button {
    border: none;
    background: #e30514;
    color: white;
    font-size: 16px;
    font-weight: bold;
    border-radius: 6px;
    padding: 10px 35px;
    margin-top: 16px;
    margin-bottom: 16px;
    cursor: pointer;
}

.login-button:focus {
    outline: none;
}

.login-cancel-button-container {
    margin-top: auto;
    margin-bottom: 28px;
}

.login-status-text-container {
    width: 400px;
    height: 400px;
    background-color: rebeccapurple;
}

.login-development-controls {
    display: flex;
    flex-direction: row;
    column-gap: 12px;
    position: fixed;
    bottom: 0%;
    left: 50%;
    transform: translate(-50%);
    margin-bottom: 20px;
}

.login-status-message {
    margin-top: 55px;
    padding: 0px 20px;
    font-family: 'Blender Pro';
    font-weight: bold;
    font-size: 16px;
    text-align: center;
}

.login-modal-content-container {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 300px;
    align-items: center;
}

.login-loader-container {
    position: absolute;
    top: 45%;
    transform: scale(0.3, 0.3) translateY(-50%);
}

.login-status-dev-button-container {
    display: block;
    position: absolute;
    bottom: 0%;
    margin-bottom: -60px;
}

.modal-dialog {
    width: 320px;
}

.modal-content {
    border-radius: 8px;
}


/* Spinner styles
-------------------------------------------------- */

.lds-spinner {
    color: black;
    display: inline-block;
    position: relative;
    width: 80px;
    height: 80px;
}

.lds-spinner div {
    transform-origin: 40px 40px;
    animation: lds-spinner 1.2s linear infinite;
}

.lds-spinner div:after {
    content: " ";
    display: block;
    position: absolute;
    top: 3px;
    left: 37px;
    width: 6px;
    height: 18px;
    border-radius: 20%;
    background: black;
}

.lds-spinner div:nth-child(1) {
    transform: rotate(0deg);
    animation-delay: -1.1s;
}

.lds-spinner div:nth-child(2) {
    transform: rotate(30deg);
    animation-delay: -1s;
}

.lds-spinner div:nth-child(3) {
    transform: rotate(60deg);
    animation-delay: -0.9s;
}

.lds-spinner div:nth-child(4) {
    transform: rotate(90deg);
    animation-delay: -0.8s;
}

.lds-spinner div:nth-child(5) {
    transform: rotate(120deg);
    animation-delay: -0.7s;
}

.lds-spinner div:nth-child(6) {
    transform: rotate(150deg);
    animation-delay: -0.6s;
}

.lds-spinner div:nth-child(7) {
    transform: rotate(180deg);
    animation-delay: -0.5s;
}

.lds-spinner div:nth-child(8) {
    transform: rotate(210deg);
    animation-delay: -0.4s;
}

.lds-spinner div:nth-child(9) {
    transform: rotate(240deg);
    animation-delay: -0.3s;
}

.lds-spinner div:nth-child(10) {
    transform: rotate(270deg);
    animation-delay: -0.2s;
}

.lds-spinner div:nth-child(11) {
    transform: rotate(300deg);
    animation-delay: -0.1s;
}

.lds-spinner div:nth-child(12) {
    transform: rotate(330deg);
    animation-delay: 0s;
}

@keyframes lds-spinner {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}