/* Astreet overrides */
.astreet .bt {
    background: var(--metallic-gold);
    color: var(--rich-white);
    border: 2px solid var(--metallic-gold);
    white-space: nowrap;
    justify-self: center;
    display: flex;
}

.astreet .bt:hover:not(:disabled) {
    color: var(--rich-white);
    opacity: 0.9;
}

.astreet .bt-secondary {
    background: var(--rich-white);
    color: var(--metallic-gold);
    border: 2px solid var(--metallic-gold);
}

.astreet .bt-secondary:hover {
    color: var(--metallic-gold);
    background: rgba(212, 175, 55, 0.05);
}

.astreet header {
    background-color: var(--rich-white);
    color: var(--rich-black);
}

.astreet {
    background-color: var(--rich-white);
    min-height: 100vh;
}

.astreet main {
    width: 100%;
}

.astreet .brand-link {
    color: var(--rich-black);
}

.astreet .brand-link:hover {
    color: var(--rich-black);
}

.astreet .primary-mailbox-banner {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 0;
}

.astreet .layout {
    flex-wrap: nowrap;
}

.astreet .sidebar {
    width: 35%;
    padding: 0 2rem 0 2rem;
}

.astreet form {
    width: var(--form-size);
}

.astreet article {
    text-align: left;
}

.astreet ol {
    text-align: left;
    list-style-type: decimal;
    padding: 0 0 0 2rem;
}

.astreet li {
    display: list-item;
    margin: 0 0 0.5rem 0;
}

.astreet h4 {
    text-align: left;
    margin: 1.5rem 0 0.5rem 0;
}

.astreet .main {
    flex: 1;
    display: flex;
}

.astreet .reveal input[name="handle"] {
    padding-right: 8.5rem;
}

.astreet .reveal input[name="handle"]~i {
    font-style: normal;
    font-size: 0.9rem;
    pointer-events: none;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}



.astreet .reveal .success {
    color: var(--success-green);
}

.astreet .reveal .error {
    color: var(--error-red);
}

.astreet .reveal .checking {
    color: var(--dim-grey);
}