.register-form {
  width: 100%;
  border-bottom: 1.5px solid var(--color-gray-300);
}

.register-form-content {
  padding: 2% 20%;
}

@media (max-width: 900px) {
  .register-form-content {
    padding: 6% 5%;
  }
}

.register-form-content h2 {
  color: var(--color-orange);
  font-weight: 700;
  letter-spacing: 3px;
  font-family: var(--font-display);
  font-size: 1.1rem;
  padding-top: 10px;
}

.register-form-content h1,
.register-form-content .register-title-lead {
  font-weight: 700;
  color: var(--color-black);
  font-family: var(--font-body);
}

.form {
  margin-top: 20px;
  width: 100%;
  background: var(--color-gray-100);
}

.form h1,
.form .form-heading {
  padding: 40px 80px 0px;
  font-weight: 800;
}

.warning-content {
  background: var(--color-white);
  padding: 2%;
  margin: 3% 80px;
}

.warning-content p {
  padding: 3px;
}

.content-form {
  display: flex;
  padding: 0px 80px;
}

.content-form-left {
  flex: 1;
  width: 100%;
  padding-right: 4px;
}

.content-form-right {
  flex: 1;
  width: 100%;
}

.content-form input {
  width: 100%;
  padding: 10px;
}

.md-field-outlined {
  position: relative;
  width: 100%;
  margin: 11px 0;
}

.md-field-outlined-cep {
  flex: 1;
  position: relative;
  padding-left: 2px;
  width: 100%;
}

.md-input-o {
  width: 100%;
  padding: 12px 10px;
  font-size: 16px;
  font-family: inherit;
  color: #1a1a1a;
  background: var(--color-white);
  border: 1.5px solid var(--color-gray-300);
  outline: none;
  box-sizing: border-box;
  transition: border-color 0.15s ease-out, border-width 0.15s ease-out;
}

.md-input-o:hover {
  border-color: var(--color-gray-600);
}

.md-input-o:focus {
  border-color: var(--color-orange);
  border-width: 1px;
  padding: 10px auto;
}

.md-label-o {
  position: absolute;
  left: 8px;
  top: 12px;
  padding: 0 4px;
  font-size: 16px;
  color: #767676;
  background: #fff;
  pointer-events: none;
  transition: all 0.15s ease-out;
}

.md-input-o:focus + .md-label-o,
.md-input-o:not(:placeholder-shown) + .md-label-o {
  top: -9px;
  font-size: 12px;
  color: var(--color-orange);
}

.md-select-orientation {
  display: flex;
  width: 100%;
  flex-direction: row;
}

.md-select-uf {
  width: 80px;
  font-family: inherit;
  position: relative;
}

.md-select {
  width: 100%;
  margin: 2px 0;
  font-family: inherit;
  position: relative;
}

.md-select-details {
  position: static;
}

.md-select-summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 12px;
  border: 1px solid #d0d0d0;
  background: #fff;
  transition: border-color 0.15s ease-out, border-radius 0.15s ease-out;
}

.md-select-summary::-webkit-details-marker {
  display: none;
}

.md-select-label {
  font-size: 15px;
  color: #9a9a9a;
  transition: color 0.15s ease-out;
}

.md-select-label.has-value {
  color: var(--color-gray-600);
}

.md-chevron {
  transition: transform 0.2s ease-out;
  flex-shrink: 0;
}

.md-select-details[open] > .md-select-summary {
  border-color: #d0d0d0;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.md-select-details[open] .md-chevron {
  transform: rotate(180deg);
}

.md-select-options {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 10;
  max-height: 140px;
  overflow-y: auto;
  list-style: none;
  margin: 0;
  padding: 4px 0;
  border: 1px solid #d0d0d0;
  border-top: none;
  background: #fff;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.md-option {
  display: block;
  width: 100%;
  text-align: left;
  padding: 12px 8px;
  font-size: 15px;
  font-family: inherit;
  color: #1a1a1a;
  background: transparent;
  border: none;
  border-left: 3px solid transparent;
  cursor: pointer;
  transition: background 0.15s ease-out, padding-left 0.15s ease-out, border-color 0.15s ease-out;
}

.md-option:hover {
  background: #f5f5f5;
  padding-left: 22px;
  border-left: 3px solid #e8622c;
}

.md-option.is-selected {
  background: #fdf2ec;
  padding-left: 22px;
  border-left: 3px solid #e8622c;
  color: var(--color-black);
}

.md-select-hidden-input {
  position: absolute;
  bottom: 0;
  left: 12px;
  width: 1px;
  height: 1px;
  opacity: 0;
  border: none;
  pointer-events: none;
}

.md-select-summary.has-error {
  border-color: #d32f2f;
}

.button-orientation {
  display: flex;
}

.button-orientation button {
  background: var(--color-orange);
  color: var(--color-white);
  font-weight: 600;
  padding: 8px 14px;
  border: transparent;
  font-size: 1.2rem;
  margin: 10px 80px 40px auto;
}

@media (max-width: 1080px) {
  .content-form {
    flex-direction: column;
    padding: 0 24px;
  }

  .md-select {
    width: 100%;
  }

  .form h1,
.form .form-heading {
    padding: 32px 24px 0;
  }

  .warning-content {
    margin: 5% 24px;
  }

  .button-orientation button {
    margin: 10px 24px 32px auto;
  }
}

@media (max-width: 480px) {
  .md-select-orientation {
    flex-direction: column;
    gap: 11px;
  }

  .md-select-uf {
    width: 100%;
  }

  .md-field-outlined-cep {
    padding-left: 0;
  }
}