.gc-reconecta-form {
  --gc-form-green: #1d3f35;
  --gc-form-accent: #91c03a;
  --gc-form-border: #d5ddd8;
  --gc-form-error: #b42318;
  display: block;
  width: 100%;
  color: #353535;
  font-family: Poppins, Arial, sans-serif;
}

body.page-id-10 .gc-reconecta-form {
  width: min(1000px, calc(100% - 40px));
  max-width: min(1000px, calc(100% - 40px));
  margin: 0 auto;
  font-family: Poppins, Arial, sans-serif;
  font-size: 14px;
}

.gc-reconecta-form__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px 14px;
}

.gc-field {
  margin: 0 0 16px;
}

.gc-field label {
  display: block;
  margin: 0 0 6px;
  color: #353535;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.3;
}

body.page-id-10 .gc-field label {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.3;
}

.gc-field input:not([type="checkbox"]):not([type="file"]),
.gc-field select,
.gc-field textarea {
  width: 100%;
  min-height: 44px;
  box-sizing: border-box;
  border: 1px solid var(--gc-form-border);
  border-radius: 5px;
  padding: 10px 14px;
  background: #fff;
  color: #333336;
  font: inherit;
  font-weight: 400;
  transition: border-color var(--gc-transition-base, 220ms ease), box-shadow var(--gc-transition-base, 220ms ease);
}

.gc-field input:not([type="checkbox"]):not([type="file"]):focus,
.gc-field select:focus,
.gc-field textarea:focus {
  border-color: var(--gc-form-accent);
  outline: none;
  box-shadow: 0 0 0 3px rgba(145, 192, 58, .28);
}

.gc-field input::placeholder,
.gc-field textarea::placeholder {
  color: #9a9a9a;
  opacity: 1;
}

.gc-field select {
  padding-right: 40px;
  -webkit-appearance: none;
  appearance: none;
  background-color: #fff;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'%3E%3Cpath stroke='%23666666' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round' d='M1.5 1.75 6 6.25l4.5-4.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 12px 8px;
  cursor: pointer;
}

.gc-field textarea {
  min-height: 120px;
  resize: vertical;
}

.gc-field input[type="file"] {
  width: 100%;
  padding: 10px 0;
  border: 0;
  background: transparent;
  color: #5c6f70;
  font: inherit;
  cursor: pointer;
}

.gc-field small {
  display: block;
  margin-top: 6px;
  color: #5c6f70;
  font-size: 12px;
  line-height: 1.4;
}

.gc-field__error {
  min-height: 18px;
  margin: 4px 0 0;
  color: var(--gc-form-error);
  font-size: .88rem;
}

body.page-id-10 .gc-field__error {
  min-height: 0;
}

.gc-field.has-error input:not([type="checkbox"]),
.gc-field.has-error select,
.gc-field.has-error textarea {
  border-color: var(--gc-form-error);
}

.gc-field--check label {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: #4d4d4d;
  font-weight: 400;
}

.gc-field--check input {
  margin-top: 3px;
  accent-color: var(--gc-form-green);
}

.gc-field--check a {
  color: #1d3f35;
  font-weight: 600;
  text-decoration: none;
}

.gc-field--check a:hover,
.gc-field--check a:focus-visible {
  color: #3f8f3a;
  text-decoration: underline;
}

.gc-reconecta-form__submit {
  width: 100%;
  min-height: 44px;
  border: 0;
  border-radius: 5px;
  background: var(--gc-form-green);
  color: #fff;
  font-family: Poppins, Arial, sans-serif;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .02em;
  cursor: pointer;
  transition: background-color var(--gc-transition-base, 220ms ease), transform var(--gc-transition-base, 220ms ease);
}

body.page-id-10 .gc-reconecta-form__submit {
  min-height: 44px;
  background: #1d3f35;
  font-family: Poppins, Arial, sans-serif;
  font-size: 14px;
  font-weight: 600;
}

.gc-reconecta-form__submit:hover,
.gc-reconecta-form__submit:focus-visible {
  background: #91c03a;
  transform: translateY(-1px);
}

.gc-reconecta-form__submit:disabled {
  opacity: .65;
  cursor: wait;
  transform: none;
}

.gc-reconecta-form__status {
  margin: 0 0 16px;
}

.gc-reconecta-form__status.is-success,
.gc-reconecta-form__status.is-error {
  padding: 14px 16px;
  border-radius: 8px;
}

.gc-reconecta-form__status.is-success {
  background: #eaf7ee;
  color: #0f5132;
}

.gc-reconecta-form__status.is-error {
  background: #fdecec;
  color: var(--gc-form-error);
}

.gc-reconecta-form__hp {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

@media (max-width: 900px) {
  .gc-reconecta-form__grid {
    grid-template-columns: 1fr;
  }

  body.page-id-10 .gc-reconecta-form {
    width: min(100%, calc(100% - 32px));
    max-width: min(100%, calc(100% - 32px));
  }
}
