
/* Form Related Rules */

fieldset {
    border: 2px solid #333;
    padding: 15px;
    margin-bottom: 20px;
  
}


legend {
    font-size: 1.3em;
    color: #000000;
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 10px;
  font-weight: bold;
}
textarea {
    color: rgba(178, 28, 8, 1);
    width: auto;
    height: 100px;
    max-width: 98%;
    box-sizing: border-box;
    border: 2px solid #ccc;
    border-radius: 4px;
    font-size: 16px;
    background-color: white;
    background-position: 10px 10px; 

}
label  {
    font-size: 1em;
    color: #333;
    display: inline-block;
    width: 200px;
    margin-right: 20px; 
}
.longlabel {
    width: 25%;
}
.shortlabel {
    width: 5%;
}
.label {
    width: 12%;
}
input[type=text], input[type=email], input[type=tel], input[type=url], input[type=password] {
    margin-left: 10px;
    width: 50%;
    box-sizing: border-box;
    border: 2px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
    background-color: antiquewhite;
    background-position: 10px 10px; 
  
}
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: rgba(150, 45, 62, 1);
}


