html, body {
    height: 100%;
    margin: 0;
}
body {
    background: url('/images/womaninbed.jpg') no-repeat center center fixed;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 0;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.50);
    pointer-events: none;
}

hr { margin: .5rem 1rem; }
p { font-size: .9rem; }

#js-error ul {
    list-style: none;
    padding-left: 0;
    margin-left: 0;
}
#js-error li {
    font-size: .9em;
    padding-left: 0;
    margin-left: 0;
}

.logoimage {
    height: 40px;
}

.auth-card {
    background-color: rgba(255, 255, 255, 1.0);
    border-radius: 8px;
    padding: 1rem;
    width: 100%;
    max-width: 360px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
    z-index: 1;
}
.auth-card h1 {
    margin-bottom: .2em;
    text-align: center;
}
.auth-card h5 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    text-align: center;
}
.form-label {
    font-weight: 400;
    font-size: .9em;
    margin-bottom: 0px;
}
.form-control {
    margin-bottom: 0;
}
.auth-card .links {
    text-align: center;
    margin-top: .2rem;
    font-size: .9em;
}
.auth-card .links a {
    display: inline-block;
    margin: 0 0.5rem;
    color: #007bff;
    text-decoration: none;
}
.auth-card .links a:hover {
    text-decoration: underline;
}

/* password handles */
.password-wrapper { position: relative; }
.password-wrapper input { padding-right: 2.2rem; }
.password-toggle {
    position: absolute; right: 0.6rem; top: 50%; transform: translateY(-50%);
    background: none; border: none; color: #6c757d; cursor: pointer; padding: 0; line-height: 1;
}
.password-toggle:focus { outline: none; box-shadow: none; }
.password-toggle i { font-size: 1.1rem; }
.visually-hidden { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }
