/* Mobile-first wrapper */
.form-section {
  min-height: 100vh;
  background-color: #f9fafb;
}

.form-wrapper {
  margin: 0 auto;
  padding-top: 60px;
}

/* Header */
.form-header {
  margin-bottom: 20px;
}

.header-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.arrow-back img {
  width: 24px;
  cursor: pointer;
}

.status {
  font-size: 14px;
  color: #6b7280;
}

/* Title */
.form-title {
  font-size: 24px;
  margin-bottom: 30px;
  color: #111827;
  text-align: center;
}

/* Form */
.form-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 6px;
  font-weight: 500;
  font-size: 14px;
  color: #374151;
}
.input-base {
  width: 100%;
  padding: 12px;
  font-size: 14px;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  background-color: #fff;
  color: #111827;
  transition: 0.2s ease;
}

.input-base:focus {
  border-color: #2087e8;
  box-shadow: 0 0 0 2px rgba(32, 135, 232, 0.2);
  outline: none;
}

.input-base::placeholder {
  color: #9ca3af;
}

.select-small {
  width: 120px;
}

/* Botão */
.submit-button {
  background-color: #2087e8;
  color: white;
  border: none;
  border-radius: 8px;
  padding: 12px;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.2s ease;
  width: 100%;
}

.submit-button:hover {
  background-color: #1c75ca; /* versão um pouco mais escura para hover */
}

