.account-shell {
    min-height: 100vh;
    background: linear-gradient(145deg, #eef4f9 0%, #f9fbfd 48%, #e7f0f7 100%);
}

.account-header {
    padding: 1.35rem clamp(1.25rem, 5vw, 4rem);
}

.account-header a {
    color: #123b67;
    font-size: 1.35rem;
    font-weight: 700;
    text-decoration: none;
}

.account-main {
    display: flex;
    justify-content: center;
    padding: 2rem 1rem 4rem;
}

.account-card {
    width: min(100%, 31rem);
    background: #fff;
    border: 1px solid #dce5ed;
    border-radius: 14px;
    box-shadow: 0 16px 45px rgba(25, 52, 78, .1);
    padding: clamp(1.5rem, 4vw, 2.5rem);
}

.account-card-wide {
    width: min(100%, 44rem);
}

.account-card-header h1,
.account-result-card h1 {
    color: #123b67;
    font-size: clamp(1.65rem, 4vw, 2.1rem);
    margin: .4rem 0 .65rem;
}

.account-card-header p,
.account-result-card p {
    color: #536273;
    line-height: 1.55;
    margin: 0 0 1.5rem;
}

.account-eyebrow {
    color: #1976b9;
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.account-form {
    display: grid;
    gap: 1rem;
}

.account-form-row {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.account-form label:not(.account-checkbox) {
    display: grid;
    gap: .4rem;
}

.account-form label > span {
    color: #27384a;
    font-size: .9rem;
    font-weight: 600;
}

.account-form input:not([type="checkbox"]) {
    border: 1px solid #b9c7d3;
    border-radius: 7px;
    font: inherit;
    min-height: 2.85rem;
    padding: .65rem .75rem;
    width: 100%;
}

.account-form input:focus {
    border-color: #1976b9;
    box-shadow: 0 0 0 3px rgba(25, 118, 185, .14);
    outline: 0;
}

.account-checkbox {
    align-items: flex-start;
    display: flex;
    gap: .65rem;
}

.account-checkbox input {
    margin-top: .25rem;
}

.account-checkbox span {
    font-weight: 400 !important;
}

.account-field-hint {
    color: #647384;
    font-size: .8rem;
    margin: -.5rem 0 0;
}

.account-primary-button,
.account-primary-link {
    align-items: center;
    background: #1976b9;
    border: 0;
    border-radius: 7px;
    color: #fff;
    cursor: pointer;
    display: inline-flex;
    font-weight: 700;
    justify-content: center;
    min-height: 2.9rem;
    padding: .7rem 1.2rem;
    text-decoration: none;
}

.account-primary-button:hover,
.account-primary-link:hover {
    background: #125d92;
    color: #fff;
}

.account-card-footer {
    border-top: 1px solid #e3e9ef;
    color: #536273;
    margin-top: 1.5rem;
    padding-top: 1.25rem;
    text-align: center;
}

.account-card-footer-column {
    display: flex;
    flex-direction: column;
    gap: .55rem;
}

.account-alert {
    border-radius: 7px;
    margin-bottom: 1.25rem;
    padding: .8rem 1rem;
}

.account-alert-error {
    background: #fff0f0;
    border: 1px solid #e8b8b8;
    color: #9a2626;
}

.account-result-card {
    text-align: center;
}

.account-result-icon {
    align-items: center;
    background: #e1f3e8;
    border-radius: 50%;
    color: #197241;
    display: inline-flex;
    font-size: 1.55rem;
    font-weight: 700;
    height: 3.5rem;
    justify-content: center;
    width: 3.5rem;
}

.account-result-icon-error {
    background: #fde9e9;
    color: #a32626;
}

@media (max-width: 640px) {
    .account-form-row {
        grid-template-columns: 1fr;
    }

    .account-main {
        padding-top: .5rem;
    }
}
