/* HTML: <div class="loader"></div> */
.inlog_loader {
  width: 50px;
  aspect-ratio: 1;
  border-radius: 50%;
  border: 8px solid var(--primary-light);
  border-right-color: var(
  --primary);
  animation: l2 1s infinite linear;
}
@keyframes l2 {to{transform: rotate(1turn)}}

.coos_login_page {
    background-color: black;
    width: 100vw;
    height: 100vh;
    top: 0px;
    left: 0px;
    position: fixed;
}
.coos_login_backdrop{
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100vw;
    height: 100vh;
    z-index: 9999;
    z-index: 0;
}

div#login_form_app {
    width: 280px;
    height: 360px;
    background-color: #ffffffdb;
    position: fixed;
    top: 50%;
    left: 15%;
    transform: translate(-50% , -50%);
    border-radius: 5px;
    padding: 20px;
    z-index: 4;
    backdrop-filter: blur(10px);
    transition-timing-function: linear(0, 0.013 0.6%, 0.05 1.2%, 0.199 2.5%, 0.395 3.7%, 0.948 6.7%, 1.201 8.4%, 1.289 9.2%, 1.354 10%, 1.396 10.8%, 1.416 11.6%, 1.418 12.2%, 1.405 12.9%, 1.345 14.3%, 1.258 15.6%, 1.012 18.8%, 0.909 20.5%, 0.851 22%, 0.826 23.6%, 0.83 24.8%, 0.854 26.2%, 0.996 30.8%, 1.039 32.5%, 1.063 34%, 1.073 35.5%, 1.061 38.2%, 0.984 44.4%, 0.97 47.4%, 0.973 49.8%, 1.004 55.8%, 1.013 59.2%, 0.995 71%, 1.002 82.8%, 1)!important;
    transition-duration: 1.5s;
}
div#login_form_app > *{
    position:absolute;
    top: 0px;
    left: 0px;
    padding: 20px;
}
div#login_form_app > form {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 15px;
    align-content: center;
    justify-content: center;
    box-sizing: border-box;
}

div#login_form_app > form > div.coos_logo {
    display: block;
    position: relative;
    top: unset;
    left: unset;
    transform: unset;
    width: 100%;
}

.coos_login_field {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
}

.coos_login_field > button {
    text-align: center!important;
    display: flex;
    flex-direction: column;
    align-content: center;
    align-items: center;
    justify-content: center;
}

.coos_login_field > input {
    width: 100%;
    padding: 9px 8px;
    box-sizing: border-box;
    border: 0px solid red;
    background-color: var(--white);
    /* border-bottom: 2px solid var(--grey-light); */
    box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 50px;
}

.coos_login_field > label {
    font-size: 15px;
    font-weight: 600;
    color: var(--black-dark);
}

.coos_login_field.remember-me {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
}

.coos_login_field.remember-me > input {
    width: 20px;
    height: 20px;
}
p.coos_login_text {
    font-size: 14px;
    color: var(--grey-dark);
    text-align: center;
}
.coos_login_backdrop video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}
.loading-state{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    height: 100%;
}

.loading-state > p{
    font-size:20px;
    color: var(--black-dark);
    text-align: center;
    font-weight: 800;
    margin: 0;
}
.loading-state > span{
    font-size: 14px;
    color: var(--grey-dark);
    text-align: center;
    font-weight: 400;
    margin: 0;
}
div#login_form_app.loading {
    width: 270px;
    height: 240px;
}
.animate__animated {
    animation-timing-function: cubic-bezier(0.289, 0.003, 0, 1)!important;
    animation-duration: .4s !important;
    animation-fill-mode: both !important;
}
.error-message {
    width: 100%;
    height: 61px;
    border: 1px solid var(--danger-dark);
    padding: 5px;
    background-color: var(--danger);
    color: white;
    font-size: 14px;
    line-height: 1.2em;
    border-radius: 3px;
    background-color: #e5e5f7;
    opacity: 1;
    background: repeating-linear-gradient( 45deg, var(--danger-dark), var(--danger-dark) 2px, var(--danger) 2px, var(--danger) 10px );
}
form {}

div#login_form_app.error {
    background-color: #fff5f5;
    height: 440px;
}