/* Form action bar, buttons, alerts, and utility visibility classes. */

.form-actions {
    display: flex;
    min-height: 6.15rem;
    padding: 1.5rem 0;
    border-top: 1px solid #f0f4f7;
    align-items: center;
    justify-content: space-between;
    background: #fff;
}

.button {
    display: inline-flex;
    padding: 0.75rem 1.5rem;
    border: 1px solid transparent;
    border-radius: 3px;
    align-items: center;
    justify-content: center;
    font-family: Roboto, Arial, sans-serif;
    font-size: 1.125rem;
    font-weight: 500;
    line-height: 1.5rem;
    text-decoration: none;
    box-shadow: none;
    transition: background-color 140ms ease;
}

.button--primary {
    color: #fff;
    background: #1171bb;
}

.button--primary:hover {
    color: #fff;
    background: #0d619f;
}

.button--primary:disabled {
    cursor: wait;
    opacity: 0.72;
    transform: none;
}

.button--quiet {
    color: #19222b;
    background: #fff;
}

.button--quiet:hover {
    background: #f0f4f7;
}

.alert {
    display: grid;
    margin-bottom: 1.5rem;
    padding: 0.9rem 1rem;
    border: 1px solid;
    border-radius: var(--radius-sm);
    gap: 0.15rem;
    font-size: 0.86rem;
}

.alert--error {
    color: #7c1d17;
    background: var(--color-error-soft);
    border-color: #e8a09b;
}

.honeypot {
    position: absolute;
    left: -10000px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.visually-hidden {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

