@import url(https://fonts.googleapis.com/css?family=Roboto:400,300,600,400italic);

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-font-smoothing: antialiased;
  -o-font-smoothing: antialiased;
  font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body {
  font-family: "Roboto";
  font-weight: 100;
  font-size: 12pt;
  line-height: 20px;
  color: #777;
  height: 100%;
  min-height: 100%;
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#33bb66+0,4cad73+50,248249+100 */
background: #33bb66; /* Old browsers */
background: -moz-linear-gradient(top, #33bb66 0%, #4cad73 50%, #248249 100%); /* FF3.6-15 */
background: -webkit-linear-gradient(top, #33bb66 0%,#4cad73 50%,#248249 100%); /* Chrome10-25,Safari5.1-6 */
background: linear-gradient(to bottom, #33bb66 0%,#4cad73 50%,#248249 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#33bb66', endColorstr='#248249',GradientType=0 ); /* IE6-9 */
}

html {
  height: 100%;
}

.container {
  max-width: 650px;
  width: 100%;
  margin: 0 auto;
  position: relative;
}

#contact input[type="text"],
#contact input[type="email"],
#contact input[type="tel"],
#contact input[type="url"],
#contact textarea,
#contact button[type="submit"] {
  font: 400 12pt/16pt "Roboto";
}

#contact {
  background: #FFFFFF;
  padding: 25px 25px 5px 25px;
  margin: 10% 0;
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.2), 0 5px 5px 0 rgba(0, 0, 0, 0.24);
}

#contact h3 {
  display: block;
  font-size: 22pt;
  font-weight: 300;
  margin-bottom: 10px;
}

#contact h4 {
  margin: 5px 0 15px;
  display: block;
  font-size: 12pt;
  font-weight: 400;
}

fieldset {
  border: medium none !important;
  margin: 0 0 10px;
  min-width: 100%;
  padding: 0;
  width: 100%;
}

#contact input[type="text"],
#contact input[type="email"],
#contact input[type="tel"],
#contact input[type="url"],
#contact textarea {
  width: 100%;
  border: 1px solid #ccc;
  background: #FFF;
  margin: 0 0 5px;
  padding: 10px;
}

#contact textarea:hover {
  -webkit-transition: border-color 0.3s ease-in-out;
  -moz-transition: border-color 0.3s ease-in-out;
  transition: border-color 0.3s ease-in-out;
  border: 1px solid #aaa;
}

#contact textarea {
  height: 100px;
  max-width: 100%;
  resize: none;
}

#contact button[type="submit"] {
  cursor: pointer;
  width: 100%;
  border: none;
  background: #33BB66;
  color: #FFF;
  margin: 0 0 5px;
  padding: 10px;
  font-size: 14pt;
}

#contact button[type="submit"]:hover {
  background: #4F4F4F;
  color: white;
  -webkit-transition: background 0.3s ease-in-out;
  -moz-transition: background 0.3s ease-in-out;
  transition: background-color 0.3s ease-in-out;
}

#contact button[type="submit"]:active {
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.5);
}

.copyright {
  text-align: center;
  font-size: 10pt;
  color: #53A371;
}

#contact input:focus,
#contact textarea:focus {
  outline: 0;
  border: 1px solid #aaa;
}

::-webkit-input-placeholder {
  color: #888;
}

:-moz-placeholder {
  color: #888;
}

::-moz-placeholder {
  color: #888;
}

:-ms-input-placeholder {
  color: #888;
}

::selection {
  background: #33BB66; /* WebKit/Blink Browsers */
  color: white;
}
::-moz-selection {
  background: #33BB66; /* Gecko Browsers */
  color: white;
}

.isa_info, .isa_success, .isa_warning, .isa_error {
  margin: 0px 0px;
  padding:10px;
  text-align: left;
  border-radius: .25em;
  font-size: 10pt;
}

.isa_info {
  color: white;
  background-color: #5bc0de;
  text-align: left;
  border-radius: .25em;
}

.isa_success {
  color: white;
  background-color: #5cb85c;
}
.isa_warning {
  color: white;
  background-color: #f0ad4e;
}
.isa_error {
  color: white;
  background-color: #d9534f;
}

.isa_info i, .isa_success i, .isa_warning i, .isa_error i {
  margin:0px 5px;
  vertical-align:middle;
  font-size: 14pt;
}