/* ===== Registration Form Styles ===== */

/* Container for the form */
form#form {
  max-width: 800px;
  margin: 2rem auto;
  padding: 2rem;
  background: #f9f9f9;
  border: 1px solid #ddd;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}


/* Form Header */
form#form h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #00b0cc;
  text-align: center;
  font-weight: bold;
}

/* Lead Paragraph */
form#form .lead {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  text-align: center;
  color: #555;
}

/* Form Group for spacing between fields */
form#form .form-group {
  margin-bottom: 1.5rem;
}

/* Labels within form groups */
form#form .form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: bold;
}

/* Style the asterisk in labels */
form#form .form-group label em {
  color: red;
  font-weight: bold;
}

/* Input fields */
form#form .form-group input[type="text"],
form#form .form-group input[type="email"],
form#form .form-group textarea {
  width: 100%;
  padding: 0.8rem;
  font-size: 1.1rem;
  border: 1px solid #ccc;
  border-radius: 5px;
  box-sizing: border-box;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

/* Focus state for inputs */
form#form .form-group input[type="text"]:focus,
form#form .form-group input[type="email"]:focus,
form#form .form-group textarea:focus {
  border-color: #00b0cc;
  box-shadow: 0 0 5px rgba(0, 176, 204, 0.5);
  outline: none;
}

/* Terms and Conditions text - smaller font */
form#form .terms p,
form#form .terms-info p {
  font-size: 9px;
  color: #666;
  line-height: 1.4;
  text-align: left;
}

/* Checkbox container spacing */
form#form .checkbox {
  display: flex;
  align-items: center;
  margin-top: 0.5rem;
}

form#form .checkbox label {
  margin-left: 8px; /* adds some space between the checkbox and the text */
  font-size: 10px;
}

/* Submit Button */
form#form .buy-button {
  display: block;
  width: 100%;
  padding: 1rem;
  font-size: 1.2rem;
  font-weight: bold;
  background-color: #fed200;
  color: #000;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  text-align: center;
  transition: background 0.3s ease, color 0.3s ease;
  margin-top: 1rem;
}

form#form .buy-button:hover {
  background-color: #e50106;
  color: #fff;
}

.custom-select {
  /* Remove default arrow and styling */
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  
  /* Basic styling */
  width: 500px;
  height: 50px;
  padding: 8px 12px;
  font-size: 16px;
  color: #333;
  border: 1px solid #ccc;
  border-radius: 5px;
  background-color: #fff;
  
  /* Add a custom arrow using a background image */
  background: #fff url("data:image/svg+xml;utf8,<svg fill='%23999' height='20' viewBox='0 0 20 20' width='20' xmlns='http://www.w3.org/2000/svg'><polygon points='0,0 20,0 10,10'/></svg>") no-repeat right 10px center;
  background-size: 12px;
}

.zoho-form-container {
  visibility: hidden;
}