﻿
body {
    background: #fff;
    color: #000000;/*text colour*/
    padding: 0px 0; /*Padding from top of page*/
    font-size: 13px; /* Text Size within Body  */
    height: 100%;
    width: 100%;
}

/*--------------------------------------------------------------------------------------------------------------------------------*/


.form-container {
    width: 100%; /* Ensure it can expand to available space */
    max-width: 400px; 
    margin: 0 auto; /* Centers the form other wise left*/
    padding: 5px;
    background-color: #f4f8fb;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-sizing: border-box; /* Important to respect padding and border within width */
}


.form-header {
    max-width: 100%;
    /*margin: 0 auto; */ /* Centers the form other wise left*/
    padding: 5px 0; /* Padding for the header */
    min-height: 50px; /* Minimum height for the header */
    margin-bottom: 10px;
    font-size: 13px;
    color: #fff; /* White text */
    background: linear-gradient(90deg, #5aa035 0%, #9bcf71 100%);
    border-radius: 6px;
    display: flex;
    flex-direction: column;
    align-items: center; /* Vertically center */
}


.submit-button {
    background: linear-gradient(90deg, #5aa035 0%, #9bcf71 100%);
    color: #fff;
    border: none;
    border-radius: 6px;
    padding: 0px 0;
    font-weight: 600;
    cursor: pointer;
    margin-top: 0px;
    transition: background 0.2s, box-shadow 0.2s;
    box-shadow: 0 2px 8px rgba(21, 101, 192, 0.08);
    width: 145px; /* Set fixed width */
    height: 25px; /* Set fixed height */
    font-size: 13px; /* Font size for the submit button */
}

    .submit-button:hover {
        background: linear-gradient(90deg, #4a822b 0%, #7aa050 100%);
    }

/*--------------------------------------------------------------------------------------------------------------------------------*/

.form-container--results {
    width: 100%; /* Ensure it can expand to available space */
    max-width: 400px;
    margin: 0 auto; /* Centers the form other wise left*/
    padding: 5px;
    background-color: #f4f8fb;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-sizing: border-box; /* Important to respect padding and border within width */
}

