/* Form Related Rules */
/*
--deep blue: #1c30a3;
--light blue: #a8d6ff;
--black: #000000;
--white: #ffffff;

*/

form {
    width: 64rem;
    max-width: 98%;
}

fieldset {

    max-width:98%;
}
legend h4{
    font-size: 1.3em;
    color: #ffffff;
    font-family:'Kite One', Arial, Helvetica, sans-serif;
    background-color: #1c30a3;
    margin-top: 0;
    margin-bottom: 0;
    padding: .5rem 4rem;
}
fieldset h4 {
    font-family:'Kite One', Arial, Helvetica, sans-serif;
}

textarea {
    color: #1c30a3;
    width:98%;
    height:100px;
    max-width: 98%;
    box-sizing: border-box;
    border: 2px solid #ccc;
    border-radius: 4px;
    font-size: 18px;
    background-color: white;
}
label{
  width:25%;
  display:inline-block;
}

.longlabel{
  width:55%;
}
.shortlabel{
  width:5%;
}
.label{
  width:12%;
}
input[type=text],input[type=email],input[type=tel], input[type=url], input[type=password]{
    margin-left:31px;
    width: 14rem;
    box-sizing: border-box;
    border: 2px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
    background-color: antiquewhite;
}

input[type=text]:focus,input[type=email]:focus,input[type=tel]:focus,input[type=url]:focus, textarea:focus  {
    width: 80%;
}
input:focus, textarea:focus {
    background-color:aliceblue;
    color: #1c30a3;
}
