/*Create a New Account (Customer)*/

/* Main Contact Section */
.contact-section {
  text-align: center;
  width: 40%;
  padding: 20px;
  background-color: #f5f5f5;
  border-radius: 10px;
  border: 1px solid black;
  margin: 50px auto 0; /* Adjusted top margin, auto centers horizontally */
}

/* Form title styling */
.formTitle {
  font-size: 30px;
  margin-bottom: 20px;
}

/* Form element styling */
.contact-form input,
.contact-form button {
  font-size: 16px; /* Legible font size */
  margin-bottom: 10px; /* Space between form elements */
  padding: 10px; /* Padding for clickable area */
  width: calc(100% - 150px); /* Full width minus padding */
  border-radius: 5px;
}

/* Button specific styling #039108*/
.contact-form button {
  background-color: #000;
  color: white;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s;
}

.contact-form button:hover {
  background-color: #0056b3;
}

/* Error message styling */
.userFail {
  margin-top: 10px;
  background-color: #FFBABA;
  font-size: 20px;
  font-weight: bold;
}

.submitButton button {
    background-color: #000;
    color: white;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s;
    font-size: 16px;
    margin-bottom: 10px;
    padding: 10px;
    width: calc(100% - 150px);
    border-radius: 5px;
}

.submitButton button:hover {
    background-color: #0056b3;
}

.contact-section input {
    font-size: 12px;
    margin-bottom: 8px;
    padding: 10px;
    width: calc(70% - 20px);
    border-radius: 5px;
}
/* Responsive adjustments */
@media screen and (max-width: 768px) {
  .contact-section {
    width: 80%;
    margin-top: 20px;
  }

  .formTitle {
    font-size: 24px;
  }
}

@media screen and (max-height: 700px) {
  .contact-section {
    padding: 10px;
    margin-top: 10px;
  }
  .column: {
      flex: 100%;
      
  }
}

.row
{
    display:flex;
    flex-wrap: wrap;
    margin: 0 -10px;
}
.column{
    flex: 50%;
}