/* Style the form element with a border around it */
form {
  border: 10px solid #60A242;
}

/* Add some padding and a green background color to containers */
.container {
  padding: 20px;
  background-color:#60A242;
}

/* Style the input elements and the submit button */
input[type=text], input[type=submit] {
  width: 100%;
  padding: 12px;
  margin: 1px 1px;
  display: inline-block;
  border: 1px solid #ccc;
  border-radius: 25px;
  box-sizing: border-box;
  }

/* Add margins to the checkbox */
input[type=checkbox] {
  margin-top: 10px;
}

/* Style the submit button */
input[type=submit] {
  background-color: #FFFFFF;
  color: #FFFFFF;
  border: none;
}

input[type=submit]:hover {
  opacity: 0.12;
}