.form-group {
  position: relative;
  margin-top: 30px;
}

.form-group input {
  width: 100%;
  padding: 10px;
  /* border: 2px solid #28a745; */
  border-radius: 4px;
  outline: none;
  /* font-size: 16px; */
}

.form-group label {
  position: absolute;
  top: 10px;
  left: 12px;
  /* color: #666; */
  background: #fff;
  padding: 0 4px;
  transition: 0.3s ease;
  pointer-events: none;
}

/* Move label on focus or when input has text */
.form-group input:focus + label,
.form-group input:not(:placeholder-shown) + label {
  top: -10px;
  left: 10px;
  /* font-size: 13px; */
  color: #0056d2;
}
/* Move label on focus or when input has text */
.form-group select:focus + label,
.form-group select:not(:placeholder-shown) + label {
  top: -10px;
  left: 10px;
  /* font-size: 13px; */
  color: #0056d2;
}

.btn {
  border-radius: 10px;
  padding: 12px 18px;
  /* font-size: 1rem; */
  /* font-weight: 500; */
  transition: all 0.3s ease-in-out;
}

.btn-primary {
  background: linear-gradient(90deg, #007bff, #0056d2);
  border: none;
  width:100%;
  height: 45px!important;
}

.btn-primary:hover {
  background: linear-gradient(90deg, #0056d2, #007bff);
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0, 91, 255, 0.2);
}
