/* CSS FORM STYLESHEET */

body {
  font-family: verdana;
  font-size: 16px;
  background-color: #ccc;
}

.employeeheader {
  text-align: center;
  font-size: 125%;
  background-color: #0099cc;
  color: #FFFFFF;
  padding: 5px;      
}

.score {
  font-size:150%;
  color: #36407F;
}

.employeeinfo {
  vertical-align: top;
  padding-right:15px;
}

input[type=text], input[type=email], textarea {
  display: flex;
 /* border: 1px solid silver;  */
  border-radius: 4px;
  padding: 8px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  width: 100%;
}

input, textarea {
  outline: none;
  transition: .2s all linear;
  margin:10px 0;
}

div#glob_content {
  background-color: #ffffcc;
  border-radius: 4px;
  border: 2px solid #354751;
  max-width: 900px;
  margin: 0 auto;
}

div#form_content {
  padding: 20px;
  background-color: #e0e0e0;  
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}

div#title {
  border-top-right-radius: 4px;
  border-top-left-radius: 4px;
  background-color: #22556E;
  color: white;
  font-family: 'Oswald', sans-serif;
  text-align: center;
  padding: 18px;
  font-size: 2.75em;
}

input[type=submit] {
  padding:10px 10px;
  background-color: #4799B7;
  border-radius: 4px;
 /* border: 1px solid #4799B7; */
  color: white;
  font-weight: bold;
  font-size: 15px;
  width: 100%;
}

input:hover[type=submit] {
  background-color: #F08F06;
  color: #fff;
}

textarea {
  height: 200px;
}

#feedback {
    padding: 3%;
}

#feedback2 {
    padding: 3%;
}
input:focus, textarea:focus {
  border: 1px solid #153641;
}


 a.highlight {
     float: left;
    color: #0099cc;
    text-decoration: none;
}

li a.highlight:hover {
    text-decoration: underline;
}