.section-conecte {
  background: #111d4a;
  padding: 0px;
}

.conecte-content {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.conecte-content__text {
  color: #fff;
}

.conecte-content__text h3 {
  margin: 0px;
  color: var(--global-color-newton-white, var(--newton-white, #fff));
  font-family: Poppins;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 120%; /* 28.8px */
}

.conecte-container {
  display: flex;
  padding-right: var(--spacing-large-lg, 96px);
  flex-direction: column;
  align-items: flex-start;
  gap: var(--spacing-small-xl, 32px);
  flex: 1 0 0;
}

.conecte-content__text {
  color: var(--global-color-newton-white, var(--newton-white, #fff));
  font-family: Poppins;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 180%; 
}
.conecte-content__text p {
  margin: 0px;
  font-family: Poppins;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 180%;
}

.form-column {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.form-check {
  gap: 8px;
  display: flex;
  align-items: center;
}
.form-check-label {
  width: 100%;
}
.conecte-content__actions {
  display: flex;
  justify-content: start;
  gap: 32px;
}

.modal {
  display: none;
  position: fixed;
  z-index: 999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.5);
  justify-content: center;
  align-items: center;
}

.modal-content {
  background-color: #fff;
  margin: auto;
  padding: 2rem;
  border-radius: 10px;
  max-width: 600px;
  position: relative;
}

.close-button {
  position: absolute;
  right: 1rem;
  top: 1rem;
  font-size: 1.5rem;
  cursor: pointer;
}

.modal.show {
  display: flex;
}

.conecte-form {
  display: flex;
  flex-direction: column;
  gap: 32px;
  border-radius: 16px;
  position: relative;
  z-index: 10;
}

.conecte-header {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.conecte-header h3 {
  margin: 0;
  color: #192a6b;
  font-family: Poppins;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 120%;
}

.conecte-header h3.title_h3 {
  color: var(--global-color-newton-white, var(--newton-white, #fff));
  font-family: "Open Sans";
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: 120%;
}

.conecte-header p {
  margin: 0;
  color: #333f5b;
  font-family: Poppins;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 180%;
}

.conecte-form-container {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 32px;
}

.conecte-group-input {
  display: flex;
  flex-direction: column;
  gap: 4px;
  width: 100%;
}

.conecte-group-input:nth-of-type(1),
.conecte-group-input:nth-of-type(2) {
  width: 48%;
  flex-grow: 1;
}
.conecte-group-input:nth-of-type(3),
.conecte-group-input:nth-of-type(4),
.conecte-group-input:nth-of-type(5) {
  width: 30%;
  flex-grow: 1;
}

.conecte-group-input:nth-of-type(6) {
  flex-direction: row;
  gap: 12px 32px;
  flex-wrap: wrap;

  input {
    height: auto;
  }
}

.checkLGPD-conecte {
  margin: 0px;
  gap: 4px;
  display: flex;
  align-items: self-end;
  justify-content: start;
  overflow: hidden;
}

.conecte-group-input label {
  color: #fff;
  font-family: "Open Sans";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
}

.conecte-terms-text {
  color: #fff;
}

.conecte-group-input input,
select {
  display: flex;
  padding: 8px 12px;
  align-items: center;
  gap: 8px;
  border-radius: 4px;
  border: 1px solid #b0b6c1;
  background: transparent;
  box-sizing: border-box;
  height: 44px;
  color: #fff !important;
}

option {
  background: #111d4a;
}

.conecte-group-actions {
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 32px;
  margin: 0 auto;
  width: 100%;
}

.btn-conecte-form {
  display: flex;
  cursor: pointer;
  height: 40px;
  padding: 0 12px 0 16px;
  justify-content: center;
  align-items: center;
  gap: 4px;
  border-radius: 4px;
  border: none;
  background: #9beb50;
  color: #192a6b;
  font-family: "Open Sans";
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 100%;
  transition: background-color 0.3s ease;
}

.conecte-content-term {
  display: flex;
  justify-content: center;
}

.conecte-check-confirm {
  margin: 0;
  display: flex;
  align-items: center;
  gap: 4px;
}

.conecte-terms-text {
  color: #fff;
  font-family: Poppins;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
}

.section__form {
  background: #111d4a;
}

@media screen and (max-width: 768px) {
  .conecte-form {
    padding: 12px;
  }

  .conecte-content__actions {
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }
}
