/* - - - - - - - - - - - - - - - - - - - - -

 Title : Wufoo Form Style - MR
 Author : Moshiur Rahman, Marketing Strategist, TLAOnline.ca
 URL : http://tlaonline.ca

 Last Updated : 

- - - - - - - - - - - - - - - - - - - - - */

h1#logo a {
  display: none;
}


.wufoo input.text, .wufoo textarea.textarea, .wufoo select.select, .wufoo label.choice 
{
  border: 1px solid #730460; /* Purple border for all input fields */
  padding: 8px;
  font-size: 16px;
  width: 100%; /* Ensures inputs take up full width */
  margin-bottom: 10px;
  box-sizing: border-box; /* Includes padding and border in width/height */
}

.wufoo input[type="file"]
{
border: 1px solid #730460; /* Purple border for file input */
  padding: 8px;
  font-size: 16px;
  width: 100%; /* Full width for file input */
  margin-bottom: 10px;
  box-sizing: border-box;
  background-color: white; /* Optional background color */
}


/* Style for submit button */
.wufoo input[type="submit"] {
  background-color: #730460; /* Button background color */
  color: white;              /* White text */
  border: 1px solid #730460; /* Border color same as background */
  padding: 10px 20px;        /* Padding for spacing */
  font-size: 16px;           /* Font size */
  cursor: pointer;          /* Pointer cursor on hover */
  width: 100%;               /* Full width */
  box-sizing: border-box;    /* Includes padding and border in the element's total width and height */
  transition: background-color 0.3s ease; /* Smooth hover transition */
}

/* Hover effect for submit button */
.wufoo input[type="submit"]:hover {
  background-color: #5e0040; /* Darker shade for hover effect */
}
