.elementor-1615 .elementor-element.elementor-element-109d5972{--display:flex;--gap:0px 0px;--row-gap:0px;--column-gap:0px;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:20px;--padding-bottom:20px;--padding-left:20px;--padding-right:20px;}/* Start custom CSS for container, class: .elementor-element-109d5972 */body {
  background: linear-gradient(to right, #f0fdf4, #ecfdf5);
}

.custom-register-box {
  max-width: 400px;
  margin: 60px auto;
  background: linear-gradient(to bottom right, #ffffff, #f9fafb);
  padding: 30px 25px;
  border-radius: 20px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  position: relative;
  overflow: hidden;
}

.custom-register-box::before {
  content: "";
  position: absolute;
  width: 150%;
  height: 150%;
  background: radial-gradient(circle at top left, #bbf7d0 0%, transparent 70%);
  top: -50%;
  left: -50%;
  z-index: 0;
  transform: rotate(20deg);
}

.custom-register-box h2 {
  text-align: center;
  margin-bottom: 25px;
  color: #14532d;
  font-weight: 600;
  font-size: 24px;
  z-index: 1;
  position: relative;
}

.custom-register-box form {
  display: flex;
  flex-direction: column;
  z-index: 1;
  position: relative;
}

.custom-register-box label {
  text-align: left;
  font-size: 14px;
  font-weight: 500;
  color: #374151;
  margin-bottom: 6px;
  margin-top: 16px;
}

.custom-register-box input {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #d1d5db;
  border-radius: 12px;
  background: #f0fdf4;
  font-size: 15px;
  transition: 0.3s;
  box-shadow: inset 2px 2px 5px rgba(0, 0, 0, 0.02);
}

.custom-register-box input:focus {
  border-color: #16a34a;
  box-shadow: 0 0 0 3px rgba(22, 163, 74, 0.2);
  outline: none;
}

.custom-register-box button {
  width: 100%;
  padding: 14px;
  margin-top: 50px; /* ⬅️ Adjusted spacing above the button */
  background: linear-gradient(to right, #16a34a, #15803d);
  color: white;
  font-weight: bold;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  font-size: 16px;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(22, 163, 74, 0.3);
}


.custom-register-box button:hover {
  background: linear-gradient(to right, #15803d, #14532d);
  transform: translateY(-2px);
}

.form-message {
  margin-top: 20px;
  padding: 12px 15px;
  border-radius: 8px;
  font-weight: 500;
  animation: fadeIn 0.4s ease-in-out;
  font-size: 15px;
  line-height: 1.5;
  text-align: center;
}

.form-message.success {
  background: #dcfce7;
  color: #166534;
  border: 1px solid #16a34a;
}

.form-message.error {
  background: #fee2e2;
  color: #b91c1c;
  border: 1px solid #dc2626;
}

@keyframes fadeIn {
  from {opacity: 0;}
  to {opacity: 1;}
}

@media (max-width: 480px) {
  .custom-register-box {
    margin: 30px 15px;
    padding: 25px 20px;
  }
}/* End custom CSS */