.form-container {
  background: #fff;
  padding: 20px 30px;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  max-width: 400px;
  width: 100%;
}

.form-group {
  position: relative;
  margin-bottom: 20px;
}

input[type="text"], input[type="email"] {
  width: 100%;
  padding: 10px 0;
  border: none;
  border-bottom: 1px solid #ccc;
  background: none;
  font-size: 14px;
  color: #333;
  outline: none;
  transition: all 0.3s ease;
}

input[type="text"]:focus, input[type="email"]:focus {
  border-color: #048e5d;
}

input[type="text"]::placeholder, input[type="email"]:placeholder {
  color: transparent; /* Hides the placeholder text */
}

.floating-label {
  position: absolute;
  top: 12px;
  left: 0;
  font-size: 14px;
  color: #999;
  pointer-events: none;
  transition: all 0.3s ease;
}
.required {
	color: red;
}

input[type="text"]:focus + .floating-label,
input[type="text"]:not(:placeholder-shown) + .floating-label, 
input[type="email"]:focus + .floating-label,	
input[type="email"]:not(:placeholder-shown) + .floating-label {
  top: -10px;
  font-size: 12px;
  color: #048e5d;
}

/* Rest of the styles */
label {
  display: block;
  font-size: 14px;
  color: #555;
  margin-bottom: 5px;
}

.radio-group {
  /* display: flex; */
  gap: 15px;
}

.radio-label {
  display: flex;
  align-items: center;
  gap: 5px;
}

.radio-label input {
  accent-color: #048e5d;
  cursor: pointer;
}

.radio-label span {
  padding-top: 2px;
  cursor: pointer;
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
}

.checkbox-label input {
  accent-color: #048e5d;
}

select {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 14px;
  outline: none;
  transition: all 0.3s ease;
}

select:focus {
  border-color: #048e5d;
  box-shadow: 0 0 5px rgba(63, 81, 181, 0.3);
}

.submit-btn {
  width: 100%;
  background-color: #048e5d;
  color: #fff;
  padding: 10px 15px;
  font-size: 14px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.submit-btn:hover {
  background-color: #00794e;
}

h3 {
	padding-bottom: 20px;
}