/*========== Form Styles ==========*/
#application {
  width: 100%;
  margin: 0 auto;
  text-align: center;
}

#applicationName,
#applicationEmail,
#applicationMessage {
  width: 300px;
  height: 45px;
  margin: 15px 0;
  padding: 0 15px;
  border: 1px solid #ccc;
  border-radius: 25px;
  background: #444;
  color: #fff;
  font-size: 18px;
  outline: none;
  transition: border 0.3s, background 0.3s;
}

#applicationName:focus,
#applicationEmail:focus,
#applicationMessage:focus {
  border: 2px solid #30ad64;
  background: #555;
}

#applicationMessage {
  height: 150px;
  border-radius: 30px;
  padding-top: 10px;
}

.applicationButton {
  margin-top: 20px;
  width: 300px;
  height: 45px;
  border-radius: 40px;
  background: #30ad64;
  color: #fff;
  font-size: 18px;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  transition: background 0.3s;
}

.applicationButton:hover {
  background: #d68c18;
}