.bg-full {
  background: url("../assects/banner/banner_3.jpg");
  width: 100%;
  /* height: 100vh; */
  display: flex;
  justify-content: flex-end;
}
/* form validation */

/* Wrapper */
.form-wrapper {
  width: 25%;
  margin: 50px;
  padding: 6px;
  border-radius: 25px;
  background: linear-gradient(135deg, #0c5c2d, #ffd400);
}

/* Form */
form {
  background: #fff;
  padding: 35px 25px;
  border-radius: 22px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
  animation: fadeUp 1s ease;
}

/* Title */
h2 {
  text-align: center;
  margin-bottom: 25px;
  color: #0c5c2d;
}

/* Field */
.field {
  margin-bottom: 18px;
  position: relative;
}

/* Inputs */
input,
select {
  width: 100%;
  padding: 14px 18px;
  border-radius: 40px;
  border: 1.5px solid #bbb;
  font-size: 15px;
  outline: none;
  transition: 0.3s;
}

/* Focus effect */
input:focus,
select:focus {
  border-color: #0c5c2d;
  box-shadow: 0 0 10px rgba(12, 92, 45, 0.4);
  transform: scale(1.02);
}

/* Error text */
.error {
  color: red;
  font-size: 12px;
  margin-left: 15px;
}

/* Submit button */
.submit-btn {
  width: 100%;
  padding: 14px;
  border: none;
  border-radius: 40px;
  background: #0c5c2d;
  color: #fff;
  font-size: 18px;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
}

/* Hover animation */
.submit-btn:hover {
  background: #0a4c25;
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

/* Success msg */
#successMsg {
  text-align: center;
  color: green;
  margin-top: 15px;
  font-weight: bold;
}

/* Animation */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Mobile */
@media (max-width: 600px) {
  form {
    padding: 25px 20px;
  }
}
/* mobile banner img */
.mobile-banner img{
    width: 100%;
    border-radius: 10px;
}