/* Style inputs with type="text", select elements and textareas */
input[type=text], select, textarea {
  width: 30%; /* Full width */
  padding-top: 12px; /* Some padding */  
  border: 1px solid #ccc; /* Gray border */
  border-radius: 4px; /* Rounded borders */
 
  margin-top: 6px; /* Add a top margin */
  margin-bottom: 16px; /* Bottom margin */
  resize: vertical;
}

label{
	color: purple
}

body{
	cursor: url("cursor.png"),auto;
	background-image: url("pic.png");
	background-repeat:no-repeat;
	background-size: cover;
	}

/* Style the submit button with a specific background color etc */
input[type=submit] {
  background-color: Purple;
  color: White;
  padding: 12px 20px;
  border: none;
  border-radius: 5px;

}

/* When moving the mouse over the submit button, add a darker green color */
input[type=submit]:hover {
  background-color: #45a049;
}

