

/* === CAIXA DO FORMULÁRIO === */
.form-wrapper {
  max-width: 420px;
  width: 100%;
  background: white;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 0 20px rgba(0,0,0,0.2);
  position: relative;
}

/* === ALERTA FLOTANTE === */
.floating-alert {
  position: absolute;
  top: calc(50% - 280px);
  left: 50%;
  transform: translateX(-50%);
  z-index: 9999;
  max-width: 90%;
  width: 420px;
  padding: 1rem 1.25rem;
  border-radius: 10px;
  box-shadow: 0 0.5rem 1rem rgba(0,0,0,0.2);
  font-size: 0.95rem;
}

/* === FORMULÁRIOS === */
.form-section {
  display: none;
}

.form-section.active {
  display: block;
}

.form-control {
  padding: 0.75rem 1rem;
}

/* === BOTÃO PRINCIPAL === */
.btn-custom {
  background-color: #008d98;
  color: white;
  border: none;
  width: 100%;
}

.btn-custom:hover {
  background-color: #00767f;
}

/* === COMUTADOR ENTRE FORMULÁRIOS === */
.toggle-switch {
  display: flex;
  justify-content: center;
  margin: 1rem auto;
  border: 1px solid #008d98;
  border-radius: 6px;
  overflow: hidden;
  width: fit-content;
}

.toggle-switch a {
  padding: 0.5rem 1rem;
  text-decoration: none;
  color: #008d98;
  background-color: white;
  transition: 0.3s;
  font-weight: 500;
}

.toggle-switch a.active {
  background-color: #008d98;
  color: white;
}

.toggle-switch a:not(.active):hover {
  background-color: #e6f7f8;
}

/* === LINKS FINAIS === */
.infozone {
  padding-top: 0.5rem;
  border-top: 1px solid #dee2e6;
  text-align: center;
}

.infozone a {
  color: #008d98;
  text-decoration: none;
}

 