/* Style inputs with type="text", select elements and textareas */
input[type=text], select, textarea {
  width: 30%; /* Full width */
  margin-top: 6px; /* Add a top margin */
  padding: 12px; /* Some padding */ 
 
}

/* Style inputs with type="password", select elements and textareas */
input[type=password], select, textarea {
  width: 30%; /* Full width */
  margin-top: 6px; /* Add a top margin */
  padding: 12px; /* Some padding */ 
}


/* Style the submit button with a specific background color etc */
input[type=submit] {
  background-color: #5f0b0b;
  color: white;
  font-weight: bold;
  padding: 12px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  margin-bottom: 30px; /* Bottom margin */
}

/* When moving the mouse over the submit button, add a darker green color */
input[type=submit]:hover {
  background-color: #962b3b;
}

/* Add a background color and some padding around the form */
.containerhome {
  border-radius: 5px;
  background-color: #f2f2f2;
  padding: 20px;
 
  
}