.field-error {
    color: var(--red-600);
    display: block;
    font-size: var(--fs-12);
    margin-top: var(--sp-4);
}

.resend-form {
    display: inline;
}

.resend-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    color: var(--lime);
    font-weight: var(--fw-semibold);
    font-size: var(--fs-14);
    font-family: inherit;
    text-decoration: none;
    transition: opacity var(--t-fast);
}

.resend-btn:hover {
    color: var(--lime);
    opacity: 0.85;
    text-decoration: underline;
}

.resend-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
    text-decoration: none;
}

.dl-logo img {
    max-width: 100%;
    height: 40px;
}