<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* ===========================================
|   This CSS file is to be use to standardize the way forms
|       and form elemnts are displayed on the web.
|   To use this, add an ID of "stdForm" to the &lt;FORM&gt; tag.
        ( ex:  &lt;form action="#" id="stdForm"&gt; )
+*/

#stdForm label {
    display: inline-block;
    font-size: 14px;
    margin-bottom: .5rem;
    vertical-align: middle;
}

#stdForm input[type=text],
#stdForm input[type=date],
#stdForm input[type=time],
#stdForm input[type=email],
#stdForm input[type=number],
#stdForm input[type=tel],
#stdForm textarea,
#stdForm select {
    display: block;
    width: 100%;
    padding: .5rem .75rem;
    font-size: 14px;
    line-height: 1.25;
    border: 1px solid #ced4da;
    border-radius: .25rem;
    transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}

#stdForm input[type=time] {
    width: 100px !important;
}

#stdForm input[type=file] {
    display: block;
    padding: 10px 0;
    font-size: 14px;
}

#stdForm textarea {
    height: 75px;
    overflow: auto;
    resize: vertical;
}

#stdForm input[readonly] {
    background-color: #e9ecef;
    opacity: 1;
}

#stdForm *[type=submit],
#stdForm *[type=reset]  {
    cursor: pointer;
    color: #fff;
    background-color: #0069d9;
    border-color: #0062cc;
    display: inline-block;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    border: 1px solid transparent;
    padding: .375rem .75rem;
    font-size: 1rem;
    line-height: 1.5;
    border-radius: .25rem;
    transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}

#stdForm *[type=submit]:disabled,
#stdForm *[type=reset]:disabled {
    background-color: #6c757d;
    color: #aaa;
    cursor: not-allowed;
}

/* ===========================================
|   Block specific styles.
+*/
/* ===========================================
|   First and Last Name
|       This CSS makes the first and last name inline
+*/
#stdForm .name p {
    display: inline-block;
    width: 40%;
    margin-right: 35px;
}

/* ===========================================
|   Address
|       This CSS compresses the fields of the address
|       input boxes so that City/State/Zip are inline
+*/
#stdForm .address p {
    display: inline-block;
    width: 25%;
}

#stdForm .address p:first-child {
    display: block;
    width: 100%;
}

#stdForm .address p:nth-child(2) {
    width: 50%;
    margin-right: 30px;
}

#stdForm .address p:nth-child(3) {
    width: 25%;
}

#stdForm .address p:nth-child(4) {
    width: 10%;
}


/* ===========================================
|   Column Styles
|       This CSS makes columns out of long lists
+*/
#stdForm .col-2 {
    column-count: 2;
}

#stdForm .col-3 {
    column-count: 3;
}</pre></body></html>