/* Page structure */
    html {
        height: 100%;
    }
    body {
        min-height: 100%;
        position: relative;
        padding-bottom: 200px;
    }

/* Hedaer */
    .navbar-default {
        border-bottom:2px solid #fb5c04;
        border-radius: 0%;
        font-size: large;
    }

/* Footer */
    img.logo {
        height: 80px;
    }

    footer.footer {
        border-top:2px solid #fb5c04;
        background: #F8F8F8;
        position:absolute;
        bottom:0;
        width:100%;
        padding-top:-120px;
        height:155px;
    }

    div.copyright {
        border-top: 2px solid silver;
    }

    a.footer-link {
        font-size: large;
        color: #777;
    }
    a.footer-link:hover,
    a.footer-link:focus {
        color: #0e0a0a;
    }

/* Main page section */
    h1 {
        margin-bottom: 40px;
    }

    table.checkform {
        border-collapse: separate;
        border-spacing: 5px 0px;
        margin-left: 40px;
    }

    table.checkform td {
        vertical-align: text-top;
    }

    .form-label {
        width:50%;
    }

    .hidden {
        display: none;
        }

    /* Hovarable bullet point to display help for the user */
    .info-tag {
        color: #117391;
    }

    /* Not used yet but might be useful */
    .warning-tag {
        color: #e79a0b;
    }


/* Status messages after form actions */
    .error-msg {
        font-size: large;
        color: #ad0808;
    }
    .error-details {
        font-size: small;
    }

    .success-msg {
        font-size: large;
        color: #409b54;
    }

/* Orange button like area */
    .button-1 {
    background-color: #fb5c04;
    border-radius: 8px;
    border-style: none;
    box-sizing: border-box;
    color: #FFFFFF;
    cursor: pointer;
    display: inline-block;
    font-family: "Haas Grot Text R Web", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 14px;
    font-weight: 500;
    height: 40px;
    line-height: 20px;
    list-style: none;
    margin: 10px;
    outline: none;
    padding: 10px 16px;
    position: relative;
    text-align: center;
    text-decoration: none;
    transition: color 100ms;
    vertical-align: middle;
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
    width:300px;
    left: 0%;
    }

    .button-1:disabled {
    background-color: #676a6b;
    }

/* Spinner styles */
    .spinner-icon {
        border: 2px solid rgba(0, 0, 0, 0.1);
        border-left-color: #fb5c04;
        border-radius: 50%;
        width: 50px;
        height: 50px;
        animation: spin 1s linear infinite;
    }

    @keyframes spin {
        0% {
            transform: rotate(0deg);
        }
        100% {
            transform: rotate(360deg);
        }
    }
    
    input:invalid {
        background-color: lightpink;
    }

