body {
    background-color: #000;
    background-image: var(--login-bg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: auto;
    height: 100vh;
}

.bsa-login {
    padding-top: 20vh;
}

.bsa-login-header {
    text-align: center;
}

.bsa-login-header img {
    width: 200px;
}

.bsa-login-box {
    max-width: 450px;
    padding: 20px;
    margin: 30px auto 0;
    width: 90%;
    position: relative;
    background: #23262F;
    border-radius: 12px;
    box-shadow: 0px 0px 10px 0px #00000070;
}

.bsa-login-box .bsa-loading {
    border-radius: 12px;
}

.bsa-login-box-header {
    text-align: center;
    margin-bottom: 18px;
}

.bsa-field.misc {
    display: flex;
    align-items: center;
}

.bsa-field.misc > div {
    flex: 1
}

.bsa-field label.desc {
    display: block;
    margin-bottom: 7px;
}

.bsa-remember-me label {
    display: flex;
    gap: 7px;
}

.bsa-login-actions {
    text-align: center;
    margin-bottom: 10px;
}

.bsa-login-actions .button {
    width: 100%;
    padding: 12px;
}

.cbs-show-password-field {
    position: relative;
}

.cbs-show-password {
    position: absolute;
    right: 0;
    height: 100%;
    width: 30px;
    background: none;
    border: 0;
    color: var(--green);
    cursor: pointer;
}

.bsa-login-link-container {
    margin-top: 30px;
    text-align: center;
}

.bsa-login-link,
.bsa-set-password-error a {
    color: var(--green);
    text-decoration: underline;
}

.bsa-set-password-error {
    background: var(--gray-dark);
    padding: 10px;
    border-left: 4px solid #dc3232;
    margin-bottom: 10px;
}