.signup-form {
    text-align: center;
    font-family: sans-serif;
    background: white;
}

.signup-row {
    display: flex;
    gap: 12px;
    justify-content: center;
}

.signup-row input {
    padding: 14px 20px;
    border: 1px solid #ccc;
    border-radius: 50px;
    font-size: 15px;
    width: 280px;
    outline: none;
}

.signup-row button {
    padding: 14px 40px;
    background: #8b0000;
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 15px;
    font-weight: bold;
    letter-spacing: 1px;
    cursor: pointer;
}

.field-wrap {
    display: flex;
    flex-direction: column;
}

.field-error {
    color: #8b0000;
    font-size: 12px;
    margin-top: 4px;
    padding-left: 16px; /* aligns with the pill input's inner text */
}

@media (max-width: 640px) {
    .signup-row {
        flex-direction: column;
        align-items: center;
    }

    .signup-row input,
    .signup-row button {
        width: 100%;
        max-width: 320px;
    }
}