
@import url('https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;1,200;1,300;1,400;1,500;1,600;1,700&display=swap');
#login-page {
    margin: 0;
    padding: 0;
    font-family: 'Nunito', sans-serif;
    font-size: 12px;
    text-align: center;
}
#login-page .page-wrapper {
    background: #333333;
    /* width: 100vw;
    height: 100vh;
    background-image: url('../assets/background.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center; */
}
#login-page .background {
    background-image: url('../background.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    height: 100vh;
    width: 100%;
}
.blur {
    /* background-color: rgba(255, 255, 255, 0.2); // Make sure this color has an opacity of less than 1 */
    /* backdrop-filter: blur(8px); // This be the blur */
    filter: blur(4px);
    /* height: 100vh;
    width: 50%; */
}
.login-block {
    position: absolute;
    top: calc(50% - 0px);
    left: calc(50% - 0px);
    width: 360px;
    height: auto;
    background: #fff;
    padding: 45px 64px 64px 64px;
    border-radius: 7px;
    box-shadow: 2px 12px 20px rgba(0, 0, 0, 0.6);
    transform: translate(-50%, -50%);
}

.login-block .input-wrapper {
    min-width: 360px;
}

.login-block input {
    padding: 6px;
    margin: 3px 0;
    width: 100%;
    text-align: left;
}

.login-block h1 {
    font-weight: 700;
    font-size: 26px;
    text-transform: uppercase;
    text-align: center;
    color: #000000;
}

.popup-wrapper .login-block {
    min-width: 480px;
}

.popup-wrapper .login-block h1 {
    margin-top: 16px;
}

label {
    float: left;
    color: #333333;
    padding-top: 8px;
    padding-left: 5px;
    font-weight: 700;
    font-size: 18px;
    /* text-transform: uppercase; */
}

input {
    height: 42px;
    width: 100%;
    cursor: pointer;
    /* border: solid 1px #dbdbdb; */
    /* border-radius: 7px; */
    color: #7d7d7d;
}

.login-btn {
    background: #ffffff;
    color: #7d7d7d;
    margin: 16px 0;
    box-shadow: 1px 1px 24px rgb(125 125 125 / 20%);
    border: solid 1px #dbdbdb;
    border-radius: 7px;
    text-decoration: none;
    transition: background-color 0.3s linear;
    /* text-transform: uppercase; */
}
.popup-wrapper .login-btn {
    width: 100%;
    line-height: 18px;
    font-size: 18px;
    padding: 16px;
    min-width: 360px;
}
.login-btn input {
    line-height: 18px;
    text-align: center;
    /* text-transform: uppercase; */
}
.green {
    color: #ffffff;
    background: #25bcbb;
}
.blue {
    color: #ffffff;
    background: #2196f3;
}
.white {
    background: #ffffff;
}
.green:hover,
.blue:hover,
.white:hover {
    background: #333333;
}
.green input,
.blue input {
    /* text-transform: uppercase; */
    color: #ffffff;
    font-size: 18px;
}
.green i,
.blue i {
    color: #ffffff;
}
.white input {
    /* text-transform: uppercase; */
    color: #7d7d7d;
    /* color: #ffffff; */
    font-size: 18px;
}

.login-btn:disabled {
    background-color: #bebebe;
    color: #6a6a6a;
}
.login-btn.busy {
    cursor: progress;
}
/* .login-btn .btn-spinner {
    color: #0ca2f7;
}  */

.notice {
    height: 14px;
    font-weight: 600;
    /* text-transform: uppercase; */
    text-align: left;
    padding: 5px;
}
.error .notice {
    color: #f1416c;
}
/* .error input {
    border: solid 1px #f1416c;
} */

input {
    outline: none;
}

.input-wrapper {
    border: solid 2px #d4d7dd;
    border-radius: 7px;
    overflow: hidden;
}

.error .input-wrapper {
    border: solid 2px #f1416c;
}

.label-wrapper {
    display: flex;
}

.login-btn .icon-wrapper,
.input-wrapper .icon-wrapper {
    position: relative;
    font-size: 24px;
    padding: 16px;
    color: #b9bec7;
}

.input-wrapper .icon-wrapper {
    display: inline-block;
}

.login-btn .icon-wrapper i[class^=fa-],
.input-wrapper .icon-wrapper i[class^=fa-] {
    font-size: 24px !important;
}

.login-btn .icon-wrapper {
    position: absolute;
    font-size: 24px;
    margin: -2px 32px;
}

.popup-wrapper .login-btn .icon-wrapper {
    margin: -18px 0;
}

.login-btn .btn {
    background: transparent;
    width: 100%;
    border: none;
}

.input-wrapper input {
    display: inline-block;
    /* margin-left: 46px; */
    border: none;
    /* margin-top: -12px; */
    background: transparent;
    width: calc(100% - 60px);
    height: 56px;
    margin: 0;
    vertical-align: top;
}

.login-logo {
    position: absolute;
    height: 128px;
    width: 128px;
    background: #ffffff;
    /* border: solid 2px red; */
    top: -64px;
    left: calc( 50% - 64px);
    border-radius: 100px;
    background: url('/assets/favicon.jpg');
    background-size: 115%;
    background-position: 50% 80%;
}

.divider-block {
    color: #7d7d7d;
    width: calc(100% - 8px);
    text-align: center;
    border-bottom: 1px solid #d4d7dd;
    line-height: 0;
    margin: 32px 4px 16px;
}

.divider-text {
    font-family: 'Nunito', sans-serif;
    font-size: 18px;
    background: #fff;
    padding: 0 10px;
}

.login-block .footer-text {
    position: absolute;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    color: #b9bec7;
}