/** Medical Production 105: Premium compact Administrator Login with aligned in-field icons. */
.login-body {
    position: relative;
    overflow-x: hidden;
    background:
        radial-gradient(circle at 18% 16%, rgba(79, 164, 231, .18), transparent 29%),
        radial-gradient(circle at 84% 82%, rgba(77, 139, 195, .18), transparent 30%),
        linear-gradient(145deg, #0d2943 0%, #123d60 52%, #1a557d 100%);
}
.login-body::before,
.login-body::after {
    content: "";
    position: fixed;
    width: 300px;
    height: 300px;
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 50%;
    pointer-events: none;
}
.login-body::before { inset: -155px auto auto -120px; }
.login-body::after { inset: auto -130px -170px auto; }
.login-shell { width: 100%; min-height: 100dvh; display: grid; place-items: center; padding: 24px; }
.login-card {
    width: min(450px, 100%);
    padding: 27px;
    border: 1px solid rgba(255, 255, 255, .72);
    border-radius: 20px;
    box-shadow: 0 28px 75px rgba(0, 20, 36, .28);
}
.login-brand { gap: 14px; margin-bottom: 22px; }
.login-brand .brand-mark.large {
    width: 58px;
    height: 58px;
    flex: 0 0 58px;
    border: 1px solid #dce7f2;
    border-radius: 15px;
    box-shadow: 0 9px 22px rgba(20, 52, 83, .1);
    font-size: 16px;
}
.login-brand-kicker { display: block; margin-bottom: 3px; color: #2674bb; font-size: 9.5px; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.login-brand h1 { color: #10243c; font-size: 21px; letter-spacing: -.025em; }
.login-brand p { margin-top: 3px; font-size: 13px; }
.login-alert { display: flex; align-items: center; gap: 8px; margin-bottom: 14px; padding: 8px 10px; font-size: 12.5px; line-height: 1.35; }
.login-alert-icon { width: 20px; height: 20px; flex: 0 0 20px; display: grid; place-items: center; border-radius: 50%; font-size: 11px; font-weight: 850; }
.alert-success .login-alert-icon { color: #fff; background: #188257; }
.alert-error .login-alert-icon { color: #fff; background: #ba3c3c; }
.login-form { gap: 15px; }
.login-field { gap: 7px; width: 100%; }
.login-field > span:first-child {
    display: block;
    width: 100%;
    margin: 0;
    color: #26384e;
    font-size: 12.5px;
    font-weight: 750;
    text-align: left;
}
.login-input-control {
    position: relative;
    display: block;
    width: 100%;
}
.login-input-control > i,
.login-input-control > svg {
    position: absolute;
    z-index: 2;
    top: 50%;
    left: 14px;
    width: 18px;
    height: 18px;
    display: grid;
    place-items: center;
    margin: 0;
    color: #668097;
    font-size: 17px;
    line-height: 1;
    transform: translateY(-50%);
    pointer-events: none;
}
.login-input-control > svg {
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.login-input-control input {
    display: block;
    width: 100%;
    min-height: 50px;
    margin: 0;
    padding-left: 43px;
    border-radius: 12px;
    background: #fbfdff;
}
.login-input-control.has-action input { padding-right: 50px; }
.password-toggle {
    position: absolute;
    z-index: 3;
    top: 50%;
    right: 7px;
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    border: 0;
    border-radius: 9px;
    color: #647a90;
    background: transparent;
    cursor: pointer;
    transform: translateY(-50%);
}
.password-toggle:hover { color: #176dcc; background: #edf5fd; }
.password-toggle > i {
    margin: 0;
    font-size: 17px;
    line-height: 1;
}
.password-toggle svg { width: 19px; height: 19px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.caps-lock-message { margin-top: -2px; color: #a3670b; font-size: 11.5px; font-weight: 650; }
.login-submit { gap: 10px; margin-top: 2px; min-height: 48px; border-radius: 12px; }
.login-submit-arrow { font-size: 19px; transition: transform .16s ease; }
.login-submit:hover .login-submit-arrow { transform: translateX(3px); }
.login-submit.is-loading { opacity: .78; cursor: wait; }
.login-secondary-actions { display: grid; gap: 10px; margin-top: 13px; }
.login-install-button { gap: 5px; min-height: 45px; }
.login-secondary-actions small { color: #718197; font-size: 10.5px; line-height: 1.45; text-align: center; }
@media (max-width: 520px) {
    .login-shell { padding: 16px; }
    .login-card { padding: 22px 18px; border-radius: 18px; }
    .login-brand .brand-mark.large { width: 52px; height: 52px; flex-basis: 52px; }
    .login-brand h1 { font-size: 19px; }
}

/* Production 65: compact semantic login status icon. */
.login-alert-icon {
    width: 22px;
    height: 22px;
    flex-basis: 22px;
    border-radius: 7px;
}
.login-alert-icon svg {
    width: 14px;
    height: 14px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.alert-success .login-alert-icon,
.alert-error .login-alert-icon {
    color: #fff;
}
