html {
    background-color: #fefdbc;
    background: linear-gradient(#fefdbc 20%, #ffffff);
    min-height: 100vh;
}
body {
    background: transparent;
    min-height: 100vh;
}
img {
    max-width: 100%;
}
.background-image {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}
.background-image .default-image {
    width: 100%;
    max-width: 600px;
    height: 100vh;
    background: linear-gradient(to bottom, red, white);
}
.background-image img {
    height: 100vh;
    max-width: 600px;
}

.auth-container {
    display: flex;
    position: fixed;
    justify-content: center;
    align-items: center;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
    background: #00000099;
    overflow: auto;
}
.auth-container .modal-window {
    position: absolute;
    text-align: center;
    background: #fcfced;
    padding: 16px;
    border-radius: 14px;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
}
.auth-container .modal-window.login {
    width: 365px;
}
.auth-container .modal-window.registration {
    width: 355px;
    padding-top: 68px;
    margin-top: 70px;
}
.auth-container .modal-window.forgot {
    width: 432px;
}
.auth-container .modal-window.recovery {
    width: 346px;
}
.auth-container .modal-window.login {
    padding-top: 90px;
}
.auth-container .modal-window {
    max-width: 400px;
}
.auth-container .modal-window.confirm-email {
    min-width: 300px;
}
.auth-container a.sso-link {
    text-decoration: underline;
    color: #015afe;
    cursor: pointer;
}
.suggested-name:hover,
.suggested-name:active,
.suggested-name:focus {
    text-decoration: underline;
    cursor: pointer;
    color: #015afe;
    transition-duration: .2s;
}
.selected-suggested-name {
    color: #015afe;
    font-weight: bold;
    transition-duration: .2s;
}
@media screen and (max-width: 600px) {
    .auth-container .modal-window {
        max-width: 90%;
    }
}
.auth-container .modal-window.provide-email,
.auth-container .modal-window.confirm-email {
    padding-top: 88px;
}
.auth-container .modal-window form {
    margin: 0 0 17px 0;
}
.auth-container .modal-window.recovery form {
    padding: 0 22px;
}
.auth-container .modal-window form input[type="text"],
.auth-container .modal-window form input[type="email"],
.auth-container .modal-window form input[type="password"],
.auth-container .modal-window input.input-style {
    border: 2px solid gray;
    border-radius: 6px;
    height: 30px;
    width: 278px;
    max-width: 90%;
    margin-bottom: 3px;
}
.auth-container .modal-window h6 {
    margin-bottom: 18px;
}
.auth-container .confirm-email #pin-code {
    display: block;
    margin: 8px auto;
    text-align: center;
    letter-spacing: 4px;
}
.auth-container .confirm-email .error-container {
    display: none;
}
.auth-container .hint {
    font-size: 12px;
    margin-top: 12px;
    font-style: italic;
}
.modal-window .header {
    position: absolute;
    left: 0;
    top: 0px;
    width: 100%;
}
.auth-link {
    margin-top: 7px;
}
.auth-link>.link {
    text-decoration: underline;
    color: #0000EE;
    cursor: pointer;
}
.auth-link>.link.join {
    font-size: 12pt;
}
.btn-simple {
    min-width: 120px;
    padding: 4px 24px;
    color: white;
    background-color: #019401;
    border-radius: 7px;
    border: none;
    /* box-shadow: 0px 1px 6px 0px #1f1f1f; */
    margin-top: 5px;
    margin-bottom: 7px;
    text-align: center;
    font-size: 14px;
    cursor: pointer;
}
.btn-simple:active {
    background-color: #019401bb;
}
.btn-simple.disabled {
    background-color: #b8deb8;
    box-shadow: none;
    pointer-events: none;
}
.btn-simple,
.btn-simple:active,
.btn-simple:hover {
    transition-duration: .2s;
}
.btn-simple:active {
    box-shadow: unset;
    transform: translateY(1px);
}
.caption {
    margin: 10px 0 0 0;
    font-weight: 600;
}
.caption-two {
    margin-top: 0;
}
.input-label {
    font-size: 15px;
    color: black;
    margin-top: 14px;
}
.input-sub-label {
    font-size: 11px;
    line-height: 1.24;
    text-shadow: 0 0 0px #cda324;
    padding: 0 44px;
}
.brown {
    color: #543c02;
}
.yellow {
    color: #ddac24;
}
.blue {
    color: #021d53;
}
.blue-light {
    color: #015afe;
}
.red {
    color: #90262c;
}
.orange {
    color: #d55901;
}
li.input-style {
    padding-top: 5px;
    padding-bottom: 0;
}
label span {
    font-size: 14px;
}
.smile {
    font-size: 20px;
}
input.form-control {
    height: 28px;
    border: 2px solid darkgrey;
    border-radius: 7px;
}
.error-container {
    display: flex;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000000cf;
    justify-content: space-evenly;
    align-items: center;
    border-radius: 14px;
}
.message-block {
    background-color: black;
    height: fit-content;
    padding: 17px 32px;
    max-width: 235px;
    text-align: center;
}
.login .message-block {
    padding: 17px 38px;
}
.registration .message-block {
    padding: 17px 29px;
}
.forgot .message-block {
    padding: 17px 16px;
}
.primary-message {
    font-weight: 700;
    color: #e0ec49;
    margin-bottom: 4px;
}
.primary-message span {
    color: #e0ec49;
}
.secondary-message {
    color: white;
    margin-top: 10px;
    margin-bottom: 10px;
}
.btn-error {
    background-color: white;
    width: fit-content;
    margin: auto;
    padding: 1px 14px;
    color: #a6232a;
    font-weight: 700;
    cursor: pointer;
    margin-top: 12px;
}
.body-background-purple {
    background-color: #fcfced;
}
#registerForm .error-container {
    z-index: 1;
}
#registerForm .message-block {
    position: relative;
    max-width: 276px;
}
#registerForm .btn-close {
    position: absolute;
    right: 8px;
    top: 0;
    color: white;
    font-size: 21px;
    cursor: pointer;
}
#registerForm .btn-close:active {
    transform: translateY(3px);
    transition-duration: .1s;
}
#registerForm .btn-error {
    color: black;
}
.auth-link {
    margin-top: 7px;
}
.auth-link>.link {
    text-decoration: underline;
    color: #015afe;
    cursor: pointer;
}
.auth-link>.link.join {
    font-size: 12pt;
}
.forgot-link a {
    color: #0C44C3;
}
.forgot-link a:hover,
.forgot-link a:active {
    text-decoration: none;
}
.check-label input {
    height: auto !important;
    margin-top: 14px;
}
u.terms {
    cursor: pointer;
}
label.check-label span {
    font-weight: normal;
}
.modal-window .header {
    position: absolute;
    left: 0;
    top: 0px;
}
.modal-window .footer {
    position: absolute;
    left: 0;
    bottom: -70px;
    padding: 0 35px;
}
.modal-window .footer img {
    cursor: pointer;
}

.modal-window.registration input::placeholder {
    text-align: center;
    font-size: 12px;
}
.modal-window.registration input[name="name"]::placeholder {
    color: #969694;
}
.modal-window.registration input[name="pass"]::placeholder {
    color: #969694;
}
.modal-window.registration input[name="email"]::placeholder {
    color: #ffb783;
}
.auth-container>.modal-window>.close-button {
    position: absolute;
    right: -5px;
    bottom: -5px;
    font-size: 24px;
    font-weight: bolder;
    font-family: math;
    background-color: black;
    color: white;
    border-radius: 13px;
    width: 25px;
    height: 25px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    padding: 0 0 1px 1px;
}
.error,
.error p {
    color: red;
    display: block;
}

#emailForm .cap_wrap,
#emailForm #captcha_code {
    width: 278px;
    max-width: 90%;
}

.error-page .btn-wrapper {
    display: flex;
    justify-content: center;
}
.error-page .btn-wrapper .btn-simple {
    width: fit-content;
}