body {
  background: #fff;
  color: #111;
  font-family: Arial, Helvetica, sans-serif;
  margin: 0;
}
.wfh-shell,
.wfh-main {
  width: min(1540px, calc(100% - 112px));
  margin: 0 auto;
}
.wfh-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 34px 0;
}
.wfh-logo img {
  width: 565px;
  max-width: 100%;
  height: auto;
  display: block;
}
.wfh-nav {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.wfh-nav a {
  background: #ff9700;
  color: #fff;
  text-decoration: none;
  font-weight: 900;
  font-size: 15px;
  line-height: 1;
  padding: 12px 28px;
  border-radius: 8px;
  text-transform: uppercase;
}
.wfh-nav a.active,
.wfh-nav a:hover {
  background: #c87800;
  color: #fff;
}
.wfh-hero {
  padding: 90px 0 128px;
  text-align: center;
  box-shadow: inset 0 12px 18px -22px rgba(0,0,0,.45);
}
.wfh-hero h1 {
  font-size: clamp(36px, 4vw, 58px);
  margin: 0 0 28px;
  color: #333;
  font-weight: 900;
}
.wfh-hero p {
  font-size: clamp(21px, 2vw, 30px);
  color: #555;
  max-width: 920px;
  margin: 0 auto;
  line-height: 1.4;
}
.wfh-section-title {
  font-size: 34px;
  line-height: 1.2;
  margin: 0 0 58px;
  padding-bottom: 20px;
  border-bottom: 4px solid #f39c12;
  display: inline-block;
  font-weight: 900;
}
.wfh-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 76px 150px;
  margin: 0 0 90px;
}
.wfh-task-card {
  min-height: 430px;
  background: #eee;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 42px 34px;
  color: #111;
  box-shadow: 0 6px 14px rgba(0,0,0,.05);
}
.wfh-task-card i {
  color: #555;
  font-size: 62px;
  margin-bottom: 34px;
}
.wfh-task-card h3 {
  font-size: 31px;
  line-height: 1.2;
  margin: 0 0 32px;
  font-weight: 900;
  text-transform: uppercase;
}
.wfh-task-card p {
  font-size: 21px;
  line-height: 1.45;
  margin: 0 0 42px;
  max-width: 440px;
  color: #555;
}
.wfh-task-card .pay {
  font-size: 25px;
  font-weight: 900;
  color: #111;
  margin-bottom: 36px;
}
.wfh-btn,
.submit-btn {
  display: inline-block;
  background: #0778ff;
  color: #fff;
  border: 0;
  border-radius: 8px;
  padding: 15px 34px;
  min-width: 190px;
  text-align: center;
  font-weight: 900;
  font-size: 14px;
  text-decoration: none;
  text-transform: uppercase;
  cursor: pointer;
}
.wfh-profile-row {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 28px;
  align-items: stretch;
  margin-bottom: 90px;
}
.wfh-profile-box {
  background: #eee;
  border-radius: 8px;
  padding: 42px 24px;
  text-align: center;
}
.wfh-profile-box i {
  font-size: 80px;
  color: #555;
  margin-bottom: 24px;
}
.wfh-profile-box p {
  text-align: left;
  font-size: 15px;
  font-weight: 900;
  margin: 22px 0;
}
.wfh-summary-box {
  background: #555;
  color: #fff;
  border-radius: 8px;
  padding: 36px 46px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr auto;
  gap: 24px;
  align-items: start;
}
.wfh-summary-box h4 {
  margin: 0 0 18px;
  font-size: 16px;
  text-transform: uppercase;
}
.wfh-summary-box p {
  color: #0780ff;
  font-weight: 900;
  margin: 10px 0;
}
.wfh-task-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  margin-bottom: 74px;
}
.wfh-task-panel,
.wfh-form-panel {
  background: #eee;
  border-radius: 10px;
  padding: 42px;
  min-height: 520px;
}
.wfh-task-panel {
  text-align: left;
}
.wfh-task-icon {
  text-align: center;
  margin-bottom: 20px;
}
.wfh-task-icon i {
  color: #555;
  font-size: 72px;
}
.wfh-task-panel h1 {
  text-align: center;
  font-size: 36px;
  line-height: 1.15;
  margin: 0 0 28px;
  text-transform: uppercase;
  font-weight: 900;
}
.wfh-stats {
  margin: 30px 0;
  font-weight: 900;
  line-height: 2;
}
.wfh-form-panel {
  box-shadow: 0 7px 12px rgba(0,0,0,.35);
  padding-top: 0;
}
.wfh-form-top {
  height: 60px;
  background: #12a0ee;
  margin: 0 -42px 36px;
  border-radius: 10px 10px 0 0;
}
.wfh-field {
  margin-bottom: 22px;
}
.wfh-field label {
  display: block;
  font-weight: 900;
  margin-bottom: 8px;
}
.wfh-field input,
.wfh-field textarea,
.wfh-field select {
  width: 100%;
  box-sizing: border-box;
  border: 1px solid #bbb;
  background: #fff;
  padding: 14px 16px;
  min-height: 52px;
  font-size: 16px;
}
.wfh-field textarea {
  min-height: 120px;
}
.wfh-message {
  background: #fff3cd;
  border-left: 5px solid #f39c12;
  padding: 14px 18px;
  margin-bottom: 24px;
  font-weight: 700;
}
.wfh-footer {
  background: #2d4053;
  color: #c4ced7;
  margin-top: 90px;
}
.wfh-footer-inner {
  width: min(1720px, calc(100% - 112px));
  margin: 0 auto;
  padding: 95px 0 78px;
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr 1fr;
  gap: 52px;
}
.wfh-footer-logo img {
  width: 330px;
  filter: grayscale(1);
  opacity: .72;
  margin-bottom: 36px;
}
.wfh-footer h3 {
  color: #ff9700;
  font-size: 24px;
  margin: 0 0 22px;
  border-bottom: 3px solid rgba(255,151,0,.22);
  padding-bottom: 22px;
}
.wfh-footer a {
  color: #c4ced7;
  display: block;
  text-decoration: none;
  font-size: 22px;
  margin-bottom: 24px;
}
.wfh-trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}
.wfh-pill {
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 28px;
  padding: 13px 18px;
  color: #fff;
  font-weight: 700;
}
.wfh-footer-bottom {
  border-top: 1px solid rgba(255,151,0,.2);
  text-align: center;
  padding: 34px 16px;
  color: rgba(255,255,255,.45);
  font-size: 18px;
}
@media (max-width: 1100px) {
  .wfh-grid { grid-template-columns: repeat(2, 1fr); gap: 36px; }
  .wfh-task-layout, .wfh-profile-row, .wfh-summary-box, .wfh-footer-inner { grid-template-columns: 1fr; }
  .wfh-logo img { width: 360px; }
}
@media (max-width: 650px) {
  .wfh-shell, .wfh-main, .wfh-footer-inner { width: min(100% - 32px, 1540px); }
  .wfh-header { flex-direction: column; align-items: flex-start; }
  .wfh-nav { justify-content: flex-start; }
  .wfh-grid { grid-template-columns: 1fr; }
  .wfh-task-card { min-height: 340px; }
  .wfh-hero { padding: 45px 0 70px; }
}

/* Compact WorkFromHomeData user theme: sized to match the public homepage. */
.wfh-shell,
.wfh-main {
  width: min(1200px, calc(100% - 48px));
}
.wfh-header {
  padding: 22px 0;
}
.wfh-logo img {
  width: 330px;
}
.wfh-nav a {
  font-size: 13px;
  padding: 10px 22px;
}
.wfh-page-title,
.wfh-hero {
  padding: 36px 0 52px;
  text-align: center;
}
.wfh-page-title h1,
.wfh-hero h1 {
  font-size: 30px;
  margin-bottom: 12px;
}
.wfh-page-title p,
.wfh-hero p {
  font-size: 17px;
  max-width: 760px;
}
.wfh-section-title {
  font-size: 24px;
  margin-bottom: 28px;
  padding-bottom: 10px;
  border-bottom-width: 3px;
}
.wfh-grid {
  gap: 28px;
  margin-bottom: 48px;
}
.wfh-task-card {
  min-height: 330px;
  padding: 30px 24px;
}
.wfh-task-card.is-disabled {
  opacity: .55;
  filter: grayscale(.45);
}
.wfh-task-card i {
  font-size: 44px;
  margin-bottom: 22px;
}
.wfh-task-card h3 {
  font-size: 22px;
  margin-bottom: 18px;
}
.wfh-task-card p {
  font-size: 16px;
  margin-bottom: 24px;
}
.wfh-task-card .pay {
  font-size: 18px;
  margin-bottom: 24px;
}
.wfh-coming-soon {
  color: #777;
  font-weight: 900;
  text-transform: uppercase;
}
.wfh-btn,
.submit-btn {
  border-radius: 7px;
  padding: 12px 26px;
  min-width: 150px;
  font-size: 13px;
}
.wfh-btn-muted {
  background: #777;
}
.wfh-btn-danger {
  background: #d64545;
}
.wfh-profile-row {
  grid-template-columns: 260px 1fr;
  gap: 24px;
  margin-bottom: 46px;
}
.wfh-profile-box {
  padding: 30px 22px;
}
.wfh-profile-box i {
  font-size: 58px;
  margin-bottom: 20px;
}
.wfh-profile-box p {
  font-size: 14px;
  margin: 15px 0;
}
.wfh-summary-box {
  padding: 28px 34px;
  gap: 20px;
}
.wfh-summary-box h4 {
  font-size: 14px;
}
.wfh-task-layout,
.wfh-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-bottom: 42px;
}
.wfh-task-panel,
.wfh-form-panel,
.wfh-card {
  background: #eee;
  border-radius: 10px;
  padding: 30px;
}
.wfh-task-icon i {
  font-size: 54px;
}
.wfh-task-panel h1 {
  font-size: 28px;
  margin-bottom: 18px;
}
.wfh-task-description {
  font-size: 16px;
  line-height: 1.55;
  text-align: center;
  color: #555;
}
.wfh-stats {
  margin: 22px 0;
  line-height: 1.8;
}
.wfh-form-panel {
  padding-top: 0;
}
.wfh-form-top {
  height: 48px;
  margin: 0 -30px 26px;
}
.wfh-field {
  margin-bottom: 18px;
}
.wfh-field input,
.wfh-field textarea,
.wfh-field select {
  padding: 12px 14px;
  min-height: 46px;
  font-size: 15px;
}
.wfh-field textarea {
  min-height: 105px;
}
.wfh-table-wrap {
  overflow-x: auto;
}
.wfh-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
}
.wfh-table th,
.wfh-table td {
  padding: 12px 14px;
  border-bottom: 1px solid #e5e5e5;
  text-align: left;
}
.wfh-table th {
  background: #f4f7f6;
  font-weight: 900;
  text-transform: uppercase;
}
.wfh-reset-box {
  background: #fff;
  border: 1px dashed #d64545;
  border-radius: 8px;
  padding: 16px;
  margin-top: 20px;
}
.wfh-reset-box label {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-bottom: 14px;
  font-weight: 700;
}
.wfh-auth-wrap {
  width: min(980px, calc(100% - 48px));
  margin: 0 auto 50px;
}
.wfh-auth-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 28px;
}
.wfh-auth-logo {
  text-align: center;
  padding: 22px 0 10px;
}
.wfh-auth-logo img {
  width: 320px;
  max-width: 90%;
}
.wfh-ad {
  width: min(1000px, calc(100% - 48px));
  margin: 18px auto 34px;
  text-align: center;
  overflow: hidden;
}
.wfh-footer {
  margin-top: 52px;
}
.wfh-footer-inner {
  width: min(1200px, calc(100% - 48px));
  padding: 48px 0 40px;
  gap: 34px;
}
.wfh-footer-logo img {
  width: 210px;
  margin-bottom: 24px;
}
.wfh-footer p {
  font-size: 15px !important;
}
.wfh-footer h3 {
  font-size: 18px;
  margin-bottom: 18px;
  padding-bottom: 14px;
}
.wfh-footer a {
  font-size: 15px;
  margin-bottom: 13px;
}
.wfh-pill {
  padding: 9px 13px;
  font-size: 14px;
}
.wfh-footer-bottom {
  padding: 22px 16px;
  font-size: 14px;
}

/* Decorate existing UserWork withdrawal forms without changing their markup. */
.container {
  width: min(1200px, calc(100% - 48px));
  margin: 0 auto;
}
.container .section-title {
  font-size: 26px;
  line-height: 1.2;
  margin: 36px 0 24px;
  color: #2d4053;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
}
.container .top-split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-bottom: 36px;
}
.container .form-card,
.container .info-card {
  background: #eee;
  border-radius: 10px;
  padding: 0;
  box-shadow: 0 6px 14px rgba(0,0,0,.05);
  overflow: hidden;
}
.container .form-card-header {
  min-height: 46px;
  background: #0f94e8 !important;
  color: #fff;
}
.container .form-card-body,
.container .info-card {
  padding: 30px;
}
.container .form-card h3,
.container .info-card h3 {
  font-size: 22px !important;
  color: #111;
  text-align: center;
  text-transform: uppercase;
  margin: 0 0 22px !important;
  font-weight: 900;
}
.container .form-card label {
  display: block;
  font-weight: 900;
  margin: 14px 0 7px;
  color: #111;
}
.container .form-card input,
.container .form-card select,
.container .form-card textarea {
  width: 100%;
  box-sizing: border-box;
  min-height: 46px;
  border: 1px solid #c8c8c8;
  background: #fff;
  padding: 10px 12px;
  font-size: 15px;
  margin: 0 0 12px;
}
.container .flag-container {
  display: block !important;
}
.container #selected_logo_container img {
  max-height: 44px;
  margin: 8px auto 14px;
}
.container .submit-btn {
  width: auto;
  min-width: 220px;
  background: #0778ff !important;
  margin-top: 6px;
}
.container #msform2 .submit-btn {
  background: #f44336 !important;
}
.container .info-card {
  text-align: left;
}
.container .info-card i {
  font-size: 34px;
  color: #0f94e8;
  display: block;
  text-align: center;
  margin-bottom: 14px;
}
.container .info-card ul {
  padding-left: 20px;
}
@media (max-width: 900px) {
  .wfh-grid,
  .wfh-task-layout,
  .wfh-two-col,
  .wfh-profile-row,
  .wfh-summary-box,
  .wfh-footer-inner,
  .wfh-auth-grid,
  .container .top-split-grid {
    grid-template-columns: 1fr;
  }
  .wfh-logo img {
    width: 300px;
  }
}
@media (max-width: 650px) {
  .wfh-shell,
  .wfh-main,
  .wfh-footer-inner,
  .wfh-auth-wrap {
    width: min(100% - 28px, 1200px);
  }
  .wfh-task-card {
    min-height: 300px;
  }
}
