body {
  margin: 0;
  background-color: #F5F5F5;
  font-family: 'Inter', sans-serif;
}

header {
  display: flex;
  align-items: center;
  padding: 24px;
  background: #FFFFFF;
}

header img {
  height: 32px;
}

main {
  margin: 24px;
}

h1 {
  margin-top: 0;
  margin-bottom: 24px;
  color: #212A2E;
  font-size: 24px;
  font-weight: 600;
}

p {
  color: #414651;
}

a {
  color: #ffffff;
  font-weight: 600;
  text-decoration: underline;
}

input.error {
  border-color: #dd3a30;
}

.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.content {
  margin-bottom: 16px;
  color: #212A2E;
  text-align: center;
}

.content h2 {
  margin-bottom: 0;
  font-size: 28px;
  font-weight: 600;
}

.content h3 {
  margin: 12px 0 16px 0;
  font-size: 18px;
  font-weight: 400;
}

.form-group input,
form select,
form textarea {
  box-shadow: 0 1px 2px 0 #0A0D120D;
  border: 1px solid #D5D7DA;
  border-radius: 8px;
  padding: 10px;
  background: #FFFFFF;
  color: #181D27;
  font-family: inherit;
  font-size: 16px;
  font-weight: 400;
}

.form-group input::placeholder,
form textarea::placeholder {
  color: #717680;
}

.form-group label,
.form-section-label {
  color: #414651;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
}

.form {
  padding: 24px 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  border-radius: 16px;
  max-width: 400px;
  background: #ffffff;
}

.form-group {
  margin-bottom: 16px;
  text-align: left;
}

.form-group label {
  display: block;
  margin-bottom: 4px;
  /* color, font-size, weight, line-height defined above */
}

.form-group input {
  transition: border-color 0.3s ease;
  box-sizing: border-box;
  box-shadow: 0 1px 2px 0 #0A0D120D;
  border: 1px solid #D5D7DA;
  border-radius: 8px;
  width: 100%;
  padding: 10px;
  background-color: #FFFFFF;
  font-size: 16px;
}

.form-group input:focus {
  outline: none;
  border-color: #212A2E;
}

.submit-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background-color 0.3s ease;
  border: none;
  border-radius: 12px;
  width: 100%;
  padding: 14px;
  background-color: #F87102;
  color: #ffffff;
  font-size: 18px;
  cursor: pointer;
  margin-top: 24px;
}

.submit-btn svg {
  height: 18px !important;
}

.submit-btn:hover {
  background-color: #b95400;
}

.submit-btn:disabled {
  opacity: 0.7;
  background-color: #999;
  cursor: not-allowed;
}

.mensagemErroDefault {
  margin-top: 20px;
  border-radius: 8px;
  padding: 10px 12px;
  background: #dd3a30;
  color: #ffffff;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.3;
}

.error-message {
  margin-top: 4px;
  color: #dd3a30;
  font-size: 14px;
}

.form-section.error,
.form-group.error {
  border: 1px solid #dd3a30;
  border-radius: 8px;
  padding: 8px;
}

.help {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 32px;
  border-radius: 16px;
  width: 100%;
  max-width: 400px;
  background: #E9EAEB;
  text-align: center;
}

.help-p {
  color: #000;
  font-size: 16px;
  font-weight: 400;
}


/* styles carried over from done.html header/hero */

.content h2 {
  margin-bottom: 10px;
  color: #212A2E;
  font-size: 36px;
  font-weight: 600;
}

.content h3 {
  margin-bottom: 20px;
  color: #212A2E;
  font-size: 20px;
}

.title-text[data-text-fill] {
  display: inline-block;
  margin: min(0em, calc(calc(1.3em - var(--framer-blockquote-line-height, var(--framer-line-height, 1.3em))) / -2));
  padding: max(0em, calc(calc(1.3em - var(--framer-blockquote-line-height, var(--framer-line-height, 1.3em))) / 2));
  background-clip: text;
  font-family: 'Inter', sans-serif;
  font-size: 64px;
  font-weight: 900;
  letter-spacing: -2px;
  -webkit-text-fill-color: transparent;
}

.apps-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin-top: 40px;
}

img {
  height: 60px;
}

.help-a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  text-decoration: none;
}

.form-section {
  margin-bottom: 24px;
}

.form-section-label {
  display: block;
  margin-bottom: 12px;
  color: #212A2E;
  font-size: 14px;
  font-weight: 600;
}

.form-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.card-radio {
  display: none;
}

.card-label {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  box-shadow: 0 1px 2px 0 #0A0D120D;
  border: 2px solid #DDDDDD;
  border-radius: 12px;
  min-height: 100px;
  padding: 16px;
  background-color: #f9f9f9;
  text-align: center;
  cursor: pointer;
}

.card-label:hover {
  border-color: #212A2E;
  background-color: #f0f0f0;
}

.card-radio:checked+.card-label {
  border-color: #212A2E;
  background-color: #212A2E;
  color: #ffffff;
}

.card-label-icon {
  margin-bottom: 8px;
  font-size: 24px;
}

.material-symbols-outlined {
  font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}

.card-label-text {
  font-size: 14px;
  font-weight: 600;
}

.card-label-description {
  margin-top: 4px;
  color: #666;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.4;
}

.card-radio:checked+.card-label .card-label-description {
  color: #ffffff;
}

.form-cards>div {
  display: flex;
}

.form-cards>div label {
  flex: 1;
}

.form-group.hidden {
  display: none;
}

@media (max-width: 480px) {
  header {
    padding: 16px;
  }

  main {
    margin: 16px;
  }

  .content h2 {
    font-size: 24px;
  }

  .content h3 {
    font-size: 16px;
  }

  form {
    max-width: 100%;
  }

  .form-cards {
    grid-template-columns: 1fr;
  }

  .card-label {
    min-height: auto;
    padding: 12px;
  }

  .card-label-icon {
    margin-bottom: 6px;
    font-size: 20px;
  }

  .card-label-text {
    font-size: 13px;
  }

  .card-label-description {
    font-size: 11px;
  }
}

.container {
  box-shadow: 0 6px 18px rgba(11, 14, 20, 0.06);
  margin: 48px auto;
  border-radius: 12px;
  max-width: 400px;
  padding: 32px 24px;
  background: #fff;
}

.btns {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.store-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 1px 2px rgba(10, 13, 18, 0.05);
  border: 1px solid #D5D7DA;
  border-radius: 10px;
  padding: 12px 16px;
  background: #fff;
  color: #181D27;
  text-decoration: none;
}

.store-btn .icon {
  font-size: 22px;
}

.muted {
  color: #717680;
  font-size: 14px;
}

.readonly input {
  background-color: #f0f0f0;
  border-color: #d5d7da;
  color: #717680;
}

.form-container {
  transition: opacity 0.3s ease;
}

.success-container {
  transition: opacity 0.3s ease;
}

.subtitle {
  color: #717680;
  font-size: 16px;
  font-weight: 400;
  margin: 0 0 24px 0;
}

.hidden {
  display: none !important;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}