/* Form Related Rules */

fieldset {
    border: black solid 1px;
    margin: 20px 0;
    max-width:98%;
}
legend {
    font-size: 1.3em;
    color: #000000;
    font-family:'Amble';
    margin-bottom: 10px;
}
textarea {
    color: black;
    width:61%;
    height:100px;
    max-width: 98%;
    box-sizing: border-box;
    border: 2px solid #0c0c0c;
    border-radius: 4px;
    font-size: 16px;
    background-color: white;
    background-position: 5px 10px; 
    background-repeat: no-repeat;
    -webkit-transition: width 0.4s ease-in-out;
    transition: width 0.4s ease-in-out;
}
label{
  width:22%;
  display:inline-block;
}
.longlabel{
  width:91%;
}
.label{
  width:12%;
}
input[type=text],input[type=email],input[type=tel], input[type=url], input[type=password]{
    margin-left:18px;
    width: 50%;
    box-sizing: border-box;
    border: 2px solid #908383;
    border-radius: 13px;
    font-size: 16px;
    background-color: antiquewhite;
    -webkit-transition: width 0.4s ease-in-out;
    transition: width 0.4s ease-in-out;
}

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: rgb(131, 64, 24);
}