@charset "UTF-8";


p { padding-left: 5px;}

.myForm input, select {
  width: 100%;
  padding: 12px 20px;
  margin: 8px 0;
  display: inline-block;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
}

::-webkit-input-placeholder { /* Edge */
  color: #ccc;
}
:-ms-input-placeholder { /* Internet Explorer 10-11 */
  color: #ccc;;
}
::placeholder {
  color: #ccc;;
}

.myForm input[type=submit] {
  width: 100%;
  background-color: #0095c6;
  color: white;
  font-weight: bold;
  padding: 14px 20px;
  margin: 8px 0;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

.myForm input[type=submit]:hover {
  background-color: #0057A2;
}

.myForm div  {
  border-radius: 5px;

}
.grey {color: red;}