@charset "UTF-8";
input {
  margin-bottom:10px;
}
textarea {
  height:100px;
  margin-bottom:10px;
}
input:first-of-type
{
  margin-top:35px;
}
input, textarea {
    font-size: 1em;
    padding: 15px 10px 10px;
    font-family: 'Source Sans Pro', arial, sans-serif;
    border: 1px solid #00A0CA;
/*    background: #d7d7d7;*/
    color: #00A0CA;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    -moz-background-clip: padding;
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    width: 80%;
    max-width: 600px;
}
::-webkit-input-placeholder {
    color: #00A0CA;
}
:-moz-placeholder {
    color: #00A0CA;
}
::-moz-placeholder {
    color: #00A0CA;
}
:-ms-input-placeholder {
    color: #00A0CA;
}
button {
    margin-top: 15px;
    margin-bottom: 25px;
    background-color: #00A0CA;
    padding: 12px 45px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    border-radius: 5px;
    border: 1px solid #00A0CA;
    -webkit-transition: .5s;
    transition: .5s;
    display: inline-block;
    cursor: pointer;
    width: 30%;
    color: #fff;
}
button:hover, .button:hover {
    background: #46D8FF;
}


.require {
    font-size: 18px;
    margin-left: 10px;
    color: red;
}
.nodisplay {
    display: none;
}