.header-content-wrapper{
  display: flex;
}
.form-container {
  max-width:85%;
  margin: 0px auto;
}

.form-section {
  background-color: #ffffff;
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  margin-bottom: 1.5rem;
}

.add-button,
.remove-button {
  transition: all 0.2s;
}

.add-button:hover {
  transform: translateY(-2px);
}

.remove-button:hover {
  transform: scale(1.05);
}

/* Floating Label CSS */
.input-group {
  position: relative;
  margin-bottom: 1.5rem;
}

.form-input {
  width: 100%;
  padding: 1rem 1rem 0.5rem 1rem;
  border: 1px solid #d1d5db;
  border-radius: 0.5rem;
  outline: none;
  background-color: transparent;
  transition: all 0.2s;
}

.form-input:focus {
  border-color: #4f46e5;
  box-shadow: 0 0 0 2px rgba(79, 70, 229, 0.5);
}

.form-label {
  position: absolute;
  top: 50%;
  left: 1rem;
  transform: translateY(-50%);
  color: #6b7280;
  transition: all 0.2s ease-out;
  pointer-events: none;
}

/* The magic happens here with peer-focus and peer-placeholder-shown */
.form-input:focus ~ .form-label,
.form-input:not(:placeholder-shown) ~ .form-label {
  top: 0;
  font-size: 0.75rem;
  color: #4f46e5;
  background-color: white;
}

div.input-group.checkbox{
  padding-top: 5px;
  text-align: center;
  border-color: white;
}

main h1{
  color: white;
}

main h2{
  color: black;
}

/* 📱 Responsive design for smaller screens */
@media (max-width:600){
  .form-container{
    width: 95%;
  }
}