/* Start custom CSS for html, class: .elementor-element-bc87544 *//* Container (optional center align) */
#verifyForm {
  max-width: 450px;
  margin: 80px auto;
  display: flex;
  gap: 10px;
  background: #111;
  padding: 10px;
  border-radius: 50px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}

/* Input Field */
#verifyForm input {
  flex: 1;
  padding: 14px 20px;
  border: none;
  outline: none;
  border-radius: 50px;
  font-size: 16px;
  background: #1c1c1c;
  color: #fff;
}

/* Placeholder */
#verifyForm input::placeholder {
  color: #aaa;
}

/* Button */
#verifyForm button {
  padding: 14px 25px;
  border: none;
  border-radius: 50px;
  background: linear-gradient(135deg, #ff6a00, #ff3c00);
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s ease;
}

/* Button Hover */
#verifyForm button:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 60, 0, 0.4);
}

/* Result Box */
#result {
  position: relative;
  max-width: 450px;
  margin: 20px auto;
  padding: 20px;
  border-radius: 15px;
  background: #111;
  color: #fff;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0,0,0,0.3);
  overflow: hidden;
}

#result::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("https://muscleocean.com/wp-content/uploads/2025/12/logo-mo.webp") no-repeat center;
  background-size: 400px; 
  opacity: 0.08; 
  rotate: -23deg;
  z-index: 0;
}

#result * {
  position: relative;
  z-index: 1;
}

/* Success */
#result h3 {
  color: #00ff88;
  margin-bottom: 10px;
}

/* Image */
#result img {
  margin-top: 10px;
  border-radius: 10px;
  max-width: 120px;
}

/* Responsive */
@media (max-width: 500px) {
  #verifyForm {
    flex-direction: column;
    border-radius: 20px;
  }

  #verifyForm button {
    width: 100%;
  }
}/* End custom CSS */