﻿body {
    
    color: #1a237e;
    padding: 0px 0; /*Padding from top of page*/
    font-size: 13px; /* Text Size within Body  */
}

/*--------------------------------------------------------------------------------------------------------------------------------*/

.form-container--contact {
    max-width: 450px; /*Optional: sets max widthn use in conjuction with flex in form-field label & Inputs */
    margin: 0 auto; /* Centers the form other wise left*/
    padding: 5px;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
}


.form-header--contact {
    max-width: 450px;
    margin: 0 auto; /* Centers the form other wise left*/
    padding-left: 10px;
    height: 30px; /* Height of the header */
    margin-bottom: 0px;
    /*font-size: 13px;*/
    color: #fff; /* White text */
    background: linear-gradient(90deg, #ff4500 0%, #ff7f50 100%);
    border-radius: 6px;
    display: flex;
    flex-direction: column;
    justify-content: center; /* Vertically center */
}
