/*
 * Sign up — Figma frames 7886:2378 (desktop) and 7888:2626 (mobile).
 *
 * The screen is the auth shell (components/auth-shell.css) with four
 * fields instead of two and two extra blocks in the actions column: the
 * consent row (component 8488:3630) and the reCAPTCHA widget the design
 * draws (component 8488:3633). Both live once under src/partials and are
 * included by reference.
 *
 * The one thing that is only true here is the order of those blocks. The
 * 375 frame runs consent, captcha, button, meta; the 1920 frame runs
 * consent, button, captcha, meta. Giving each block a flex `order` at
 * both breakpoints serves both from one DOM, the same way the account
 * shell reconciles its two block orders.
 */

.sign-up-actions .consent { order: 1; }

.sign-up-actions .recaptcha { order: 2; }

.sign-up-actions .auth-form__submit { order: 3; }

.sign-up-actions .auth-form__status { order: 4; }

.sign-up-actions .auth-form__meta { order: 5; }
.b-brown-btn{
    height:59px;
    padding: 17px 30px !important;
    box-shadow:none;
}
.b-brown-btn:hover{
border-radius: var(--radius-xs, 4px);
background: var(--brand-bronze, #8A6E48);
padding: 17px 30px !important;
height:59px;
box-shadow:none;
}
@media (min-width: 992px) {
  .sign-up-actions .auth-form__submit { order: 2; }

  .sign-up-actions .recaptcha { order: 3; }
}
