/* Basic Reset */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.form-group {
  margin-bottom: 15px !important;
}



/* Preloader */
.preloader {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255,255,255,0.7);
  z-index: 1000;
  justify-content: center;
  align-items: center;
}

.spinner {
  width: 40px;
  height: 40px;
  border: 4px solid #999;
  border-top: 4px solid #007bff;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}


.form-wrapper-trade #phone {
	width:100% !important;
}
/* Form Heading */
.form-wrapper-trade .formheading {
  text-align: center;
  font-size: 24px;
  margin-bottom: 25px;
  font-weight: 600;
  color: #222;
}



 .form-wrapper-trade .row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.col {
  flex: 1 1 100%;
}

.col-half {
  flex: 1 1 calc(50% - 10px);
}

/* Form Elements */

 .form-wrapper-trade .form-control {
  width: 100%;
  padding: 12px 14px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 6px;
  transition: border 0.3s ease;
}

.form-control:focus {
  border-color: #007bff;
  outline: none;
}

button.form-control {
  background: #007bff;
  color: white;
  font-weight: bold;
  cursor: pointer;
  border: none;
  transition: background 0.3s ease;
}

button.form-control:hover {
  background: #0056b3;
}
.form-group .iti{
	width:100% !important;
}
.iti.iti--allow-dropdown {
    width: 100% !important;
}

/* Message */
.form-message {
  text-align: center;
  margin-top: 15px;
  font-size: 16px;
}

/* Terms */
.fortp {
  margin-top: 20px;
  text-align: center;
  font-size: 14px;
}

.fortp a {
  color: #007bff;
  text-decoration: none;
}

.fortp a:hover {
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 600px) {
  .col-half {
    flex: 1 1 100%;
  }

  form#customFormWidget {
    padding: 20px;
  }
}

 /* Adjust form width for mobile */
@media only screen and (max-width: 768px) {
.form-wrapper-trade {
    padding: 25px 10px !important;
}   
}