.cfm-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0; top: 0;
    width: 100%; height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.4);
}

.cfm-modal-content {
    background-color: #fff;
    margin: 10% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 90%;
    max-width: 500px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0,0,0,0.3);
}

.cfm-close {
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

.cfm-button {
  background: #011B30;
    color: white;
    padding: 10px 25px;
    border: none;
    border-radius: 0px;
    cursor: pointer;
    margin-bottom: 0px;
    width: 100%;
}
.cfm-modal-content h2 {
    font-size: 32px;
    font-family: "Georgia", sans-serif;
    color: #333;
    text-align: center;
    margin-bottom: 23px;
}




.custom-form {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    max-width: 800px;
    margin: auto;
  }

  .form-field {
    flex: 1 1 100%;
    display: flex;
    flex-direction: column;
  }

  .form-field label {
    font-weight: bold;
    margin-bottom: 5px;
	  font-family: 'Manrope';
  }

  .form-field input,
  .form-field select,
  .form-field textarea {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 6px;
  }

  /* Two-column layout for wider screens */
  .form-field.half-width {
    flex: 1 1 calc(50% - 10px);
  }

  /* Responsive: Stack on small screens */
  @media (max-width: 768px) {
    .form-field.half-width {
      flex: 1 1 100%;
    }
  }