#background-image {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
}

#page {
    justify-content: center;
    align-items: center;
    padding: 40px;
}

.auth-login-card {
    width: 440px;
    max-width: 100%;
    gap: 24px;
    padding: 28px;
}

.auth-login-header {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.auth-login-brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
}

.auth-login-brand > img {
    width: 36px;
    height: 36px;
}

.auth-login-heading {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.auth-login-kicker {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--green-blue);
}

.auth-login-description {
    color: #6d6d6d;
    line-height: 1.6;
}

.auth-login-errors {
    width: 100%;
    margin: 0;
    padding: 14px 18px 14px 32px;
    border-radius: 12px;
    background-color: #fff3f3;
}

.auth-login-errors li {
    color: #b64141;
}

.auth-login-form {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.auth-login-field {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.auth-login-field > label,
.auth-login-remember > label {
    font-weight: 600;
}

.auth-login-field > input {
    width: 100%;
}

.auth-login-remember {
    width: 100%;
}

.auth-login-remember > label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.auth-login-submit {
    width: 100%;
}
