body {
    min-height: 100vh;
    height: 100%;
    display: flex;
    flex-direction: column;
}

main {
    flex-grow: 1;
    position: relative;
    display: flex;
    flex-direction: column;
}

#network-status {
    display: flex;
    text-align: center;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    display: none;
    height: 25px;
    width: 100vw;
    font-size: 0.875em;
}

header {
    position: fixed;
    top: 0;
    width: 100%;
}

header,
footer {
    flex-grow: 0;
    flex-shrink: 0;
}

.wrapper {
    padding: 20px 10px;
    display: flex;
    flex-direction: column;
    height: 100%;
    flex: 1;
    justify-content: space-around;
}

.cntnr-1 {
    margin: 0 auto;
    width: 450px;
    max-width: 95%;
    height: fit-content;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: #0000003a 0px 5px 15px 0px;
    background-color: #ffffff;
    display: flex;
}

.left-cntnt,
.right-cntnt {
    flex: 1 1 auto;
}

.form-cntnr {
    padding: 25px 40px 35px 40px;
}

@media only screen and (max-width: 900px) {
    .cntnr-1 { 
        box-shadow: none;
    }
}

@media only screen and (max-width: 600px) {
    .form-cntnr {
        padding: 20px 20px 24px 20px;
        box-shadow: none;
    }
}

.form-cntnr-hd {
    color: #1c2328;
    display: flex;
    flex-direction: column;
    gap: 2px;
    margin-bottom: 20px;
}

.form-cntnr-hd .hd-1 {
    font-size: 14px;
    font-weight: normal;
}

.form-cntnr-hd .hd-2 {
    font-size: 18px;
    font-weight: 500;
    color: #212121;
}

form .form-input:not(:first-of-type) {
    margin-top: 14px;
}

form .form-input input,
form .form-input select {
    width: 100%;
    padding: 8px 12px;
    outline: none;
    border-radius: 2px;
    border: none;
    background-color: #dddddd17;
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    font-size: 0.875em;
    resize: none;
    border: 1px solid #4d4d4d29;
    transition: 0.3s;
    outline: 3px solid transparent;
}

form .form-input select {
    padding: 8px 8px;
}

@media (pointer: none),
(pointer: coarse) {
    form .form-input input,
    form .form-input select {
        padding: 12px 12px;
    }

    form .form-input select {
        padding: 12px 8px;
    }
}

form .form-input input:focus,
form .form-input select:focus {
    border-color: transparent;
    outline-color: #3096fc65;
}

form .form-input.password-input input {
    padding-right: 41px;
}

form .form-input span {
    position: relative;
    float: right;
    right: 8px;
    bottom: 2.2em;
    cursor: pointer;
    font-size: 0.75em;
    color: #949494;
    user-select: none;
}

.in-form-lnk button {
    padding: unset;
    min-width: unset;
    width: fit-content;
    max-width: unset;
    background-color: unset;
    border-radius: unset;
    font-size: 0.75em;
    color: #949494;
    margin-top: 4px;
}

.captcha-input {
    display: flex;
    gap: 10px;
    width: 100%;
}

.captcha-cntnr {
    height: 37px;
    width: 150px;
}

.captcha-input img {
    border-radius: 2px;
    height: 37px;
    width: 100%;
    background-color: #26333c;
}

@media (pointer: none),
(pointer: coarse) {
    .captcha-input img {
        height: 42px;
    }
}

.reload-captcha-cntnr {
    text-align: right;
}

.form-btns {
    margin-top: 40px;
}

form button {
    padding: 10px 10px;
    border-radius: 3px;
    font-size: 0.9375rem;
    display: inline-block;
    min-width: fit-content;
    width: 100%;
    max-width: 100%;
}

@media (pointer: none),
(pointer: coarse) {
    form button {
        padding: 13px 10px;
        font-size: 0.9375rem;
    }
}


form button[type="submit"] {
    background-color: #1c2328;
    color: #ffffff;
}

form button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.loader {
    border: 2px solid transparent;
    border-radius: 50%;
    border-top: 2px solid #ffffff;
    border-right: 2px solid #ffffff;
    width: 19px;
    height: 19px;
    -webkit-animation: spin 1s linear infinite;
    animation: spin 1s linear infinite;
    margin: 0 auto;
}

@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
    }
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

footer {
    border-top: 1px solid #12121254;
    background-color: #f8f8f8;
    color: #121212;
    display: flex;
    align-items: center;
    justify-content: center;
}

.f-r {
    padding: 8px 2px;
}

.f-r-1 a {
    color: #ff4343;
    font-weight: 600;
}

.circles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
}

.circles li {
    position: absolute;
    display: block;
    list-style: none;
    width: 20px;
    height: 20px;
    background: rgba(255, 255, 255, 0.2);
    animation: animate 10s linear infinite;
    bottom: -150px;
}

.circles li:nth-child(1) {
    left: 25%;
    width: 20px;
    height: 20px;
    animation-delay: 0s;
}

.circles li:nth-child(2) {
    left: 10%;
    width: 20px;
    height: 20px;
    animation-delay: 2s;
    animation-duration: 12s;
}

.circles li:nth-child(3) {
    left: 70%;
    width: 20px;
    height: 20px;
    animation-delay: 4s;
}

.circles li:nth-child(4) {
    left: 40%;
    width: 20px;
    height: 20px;
    animation-delay: 0s;
    animation-duration: 18s;
}

.circles li:nth-child(5) {
    left: 65%;
    width: 20px;
    height: 20px;
    animation-delay: 0s;
}

.circles li:nth-child(6) {
    left: 75%;
    width: 20px;
    height: 20px;
    animation-delay: 3s;
}

.circles li:nth-child(7) {
    left: 35%;
    width: 20px;
    height: 20px;
    animation-delay: 7s;
}

.circles li:nth-child(8) {
    left: 50%;
    width: 20px;
    height: 20px;
    animation-delay: 15s;
    animation-duration: 45s;
}

.circles li:nth-child(9) {
    left: 20%;
    width: 20px;
    height: 20px;
    animation-delay: 2s;
    animation-duration: 35s;
}

.circles li:nth-child(10) {
    left: 85%;
    width: 20px;
    height: 20px;
    animation-delay: 0s;
    animation-duration: 11s;
}

@keyframes animate {
    0% {
        transform: translateY(0) rotate(0deg);
    }

    100% {
        transform: translateY(-1000px) rotate(720deg);
    }
}

.app-installation-swal-popup {
    padding: 10px !important;
}

.app-installation-swal-popup h2 {
    font-size: 14px !important;
    font-weight: 500 !important;
    margin-top: 0px !important;
}

.app-installation-swal-popup  .swal2-html-container {
    margin-top: 0px !important;
}

.app-installation-swal-popup p {
    font-size: 12px !important;
}

.app-installation-swal-popup button {
    font-size: 14px !important;
    font-weight: 400 !important;
    border-radius: 4px !important;
}

.app-installation-swal-popup .app-installation-swal-install-btn {
    background-color: #2a95ff;
}
.app-installation-swal-popup .app-installation-swal-cancel-btn {
    background-color: #ff1746;
}

.app-installation-swal-popup .swal2-image {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px auto;
}

.fl-unlock-cntnr {
    text-align: center;
    overflow: hidden;
    width: 100%;
    padding: 40px 10px;
}

.fl-unlock-cntnr img {
    width: 70px;
    height: auto;
    padding: 4px;
    background-color: #fff;
    border-radius: 4px;
    box-shadow: rgba(0, 0, 0, 0.25) 0px 14px 28px, rgba(0, 0, 0, 0.22) 0px 10px 10px;
    transition: 0.1s;
    cursor: pointer;
}

.fl-unlock-cntnr img:active,
.fl-unlock-cntnr img:hover { 
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
    transform: scale(0.9);
}