.register-section {
  /* padding: 60 20px; */
  padding: 0 20px;
  padding-bottom: 60px;
  background-color: #f9f9f9;
}

.register-container {
  display: flex;
  gap: 40px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 1000px;
  margin: auto;
}

.register-illustration {
  flex: 0 1 220px;
  max-width: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.register-illustration img {
  width: 100%;
  max-width: 250px;
  height: auto;
}

.form-note {
  font-size: 0.9rem;
  line-height: 1.5;
  text-align: justify;
  word-break: break-word;
}

#form-success {
  display: none;
  padding: 16px;
  background: #e6ffed;
  border: 1px solid #27ae60;
  color: #1b5e20;
  margin-bottom: 20px;
  border-radius: 6px;
}

.register-form {
  background: white;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  flex: 1;
  min-width: 300px;
}

.register-form h2,
.register-form p {
  margin-bottom: 20px;
}

.register-form p {
  font-size: 0.9rem;
}

form label {
  display: block;
  margin-bottom: 5px;
  font-weight: bold;
}

textarea::placeholder {
  font-family: "Roboto", sans-serif;
}

select {
  color: #000;
  background: url("images/arrow-down.svg") no-repeat right 1rem center;
  padding-right: 2.5rem;
  background-size: 1rem;
  border: 1px solid #ccc;
  appearance: none;
}

select option {
  color: black;
}

form input,
form textarea,
select {
  font-family: "Roboto", sans-serif;
  width: 100%;
  padding: 10px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  box-sizing: border-box;
  resize: none;
}

form input:focus,
form textarea:focus,
select:focus {
  outline: none;
  border: 1px solid #2d4a8a;
  transition:
    border 0.3s,
    box-shadow 0.3s;
}

form button {
  width: 50%;
  padding: 12px;
  background-color: #2d4a8a;
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  cursor: pointer;
  transition: 0.3s;
}

form button:hover {
  background-color: #155ec0;
}

.submit-confirm {
  display: flex;
  align-items: center;
  gap: 20px;
}

.submit-confirm p {
  width: 50%;
  margin-bottom: 0;
  font-size: 0.8rem;
}

.experience-group {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: center;
}

.experience-group label {
  display: flex;
  flex-direction: row;
  gap: 10px;
}

.yes,
.no {
  border: 1px solid red;
  margin-top: 3px;
}
