@import url(http://fonts.googleapis.com/css?family=Lato:300,400,700|Merriweather+Sans:800);


.check-list {
  color: #00a900;
  font-size: 40px;
}

.entrance-test-form input:focus,select:focus,textarea:focus {
  background: #AAA;
  -o-transition: all 0.1s linear;
  -moz-transition: all 0.1s linear;
  -khtml-transition: all 0.1s linear;
  -webkit-transition: all 0.1s linear;
  -ms-transition: all 0.1s linear;
  transition: all 0.1s linear;
}

.entrance-test-form {
  font: normal 20px 'Lato';
  font-weight: 300;
  margin: 0 auto; 
  color: #000;
  width: 100%;
  text-align: left;
}

.entrance-test-form input[type=text] {
  margin: 5px 0;
  border: 1px solid #1a76ab;
  border-radius: 4px;
  height: 50px;
  width: 100%;
  padding: 5px 10px; 
  background: #fff;
  color: #000;
  box-sizing: border-box;
}

.entrance-test-form textarea {
  margin: 3px 0;
  border: 1px solid #1a76ab;
  border-radius: 4px;
  height: 100px;
  width: 100%;
  padding: 10px; 
  background: #fff;
  color: #000;
  box-sizing: border-box;
}

.entrance-test-form select {
  margin: 3px 0;
  border: 1px solid #00a94e;
  height: 30px;
  width: 100%;
  background: #F8F8F8;
  box-sizing: border-box;
}

.entrance-test-form input[type=submit], input[type=reset] {
  margin: 5px 0 20px;
  padding: 0 20px;
  border: 0;
  height: 40px;

  background: #1a76ab;
  float: right;
  color: #FFF;
  text-align: right;
  box-sizing: border-box;
  font: bold 18px 'Lato';
  -o-transition: all 0.1s linear;
  -moz-transition: all 0.1s linear;
  -khtml-transition: all 0.1s linear;
  -webkit-transition: all 0.1s linear;
  -ms-transition: all 0.1s linear;
  transition: all 0.1s linear;
}

.entrance-test-form input:hover[type=submit], input:hover[type=reset] {
  cursor: pointer;
  opacity: 0.6;
}

h2 {
  margin: 0;
  padding: 0;
}

@media screen and (max-width: 37em) { 
  .entrance-test-form { margin: 2% auto 20px; }
}