.cadastro-container {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
}

.form-input {
  background: #f9f9f9 0% 0% no-repeat padding-box;
  border: 1px solid #e6e6e6;
  border-radius: 10px;
  width: 100%;
  height: 40px;
  padding-left: 15px;
}

.input-content {
  width: 100%;
}

.form-row {
  display: flex;
  gap: 20px;
}

.input-label {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 10px;
}

.input-circle {
  content: "";
  width: 8px;
  height: 8px;
  background-color: #007cb0;
  border-radius: 50%;
}

.input-label h1 {
  color: #1c1c1b;
  font-size: 16px;
  line-height: 19px;
  font-family: "NimbusSans-Bold";
}

.cadastro-btn-container p {
  color: #646464;
  font-size: 14px;
  font-family: "NimbusSans-Bold";
}

.cadastro-section {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  margin-top: 30px;
}

.show-password {
  position: absolute;
  top: 2px;
  right: 2px;
  cursor: pointer;
  height: 38px;
  border-radius: 30px;
  width: 40px;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cadastro-btn-container {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 25px;
  background-color: transparent;
}

.password {
  text-decoration: underline;
  font: normal normal normal 14px/20px;
  letter-spacing: 0px;
  color: #007cb0;
  font-size: 14px;
  font-family: "NimbusSans-Regular", sans-serif;
}

.cadastro-title {
  font-size: 32px;
  color: #007cb0;
  font-family: "NimbusSans-Regular", sans-serif;
  line-height: 40px;
  max-width: 384px;
}

.strong-title {
  font-family: "NimbusSans-Bold", sans-serif;
}

.cadastro-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 40px;
  background: #1364ae;
  box-shadow: 0px 10px 10px #1818190d;
  border-radius: 10px;
  font-family: "NimbusSans-Bold";
  font-size: 13px;
  cursor: pointer;
  transition: 0.3;
  text-decoration: none;
  color: #ffffff;
  text-transform: uppercase;
}

.cadastro-btn:hover {
  background-color: #025bc1;
}

.cadastro-btn-container a {
  text-decoration: underline;
  color: #3e88d7;
}
.cadastro-form {
  padding: 30px;
  background-color: #f3f3f3;
  border-radius: 10px;
  min-width: 420px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.success-msg-container {
  margin: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.success-msg-container h3 {
  color: green;
  font-family: "Poppins-medium";
  margin: 28px 0px;
  font-size: 1.3em;
}
@media (max-width: 800px) {
  .cadastro-container {
    flex-direction: column;
    width: 100%;
    padding: 0;
    height: unset;
    padding-bottom: 30px;
    background: none;
    border: none;
  }

  .cadastro-btn {
    width: 100%;
    height: 40px;
  }

  .form-input {
    width: 100%;
  }

  .cadastro-title {
    font-size: 28px;
  }

  .email-row {
    flex-direction: column;
    gap: 0;
    margin-bottom: 10px;
  }
}
@media (max-width: 470px) {
  .cadastro-form {
    min-width: 300px;
  }
}
