/*
Program name: CopayCollectiveMedical
Author: Blair M. Hearne
Date created: 2/1/2026
Date last edited: 2/27/2026
Version: 1.5.1
Description: External CSS for Patient Registration Form
*/

/*The CSS file which will point towards the original HTML Doc */

body {
    background-color: #f0fff5;
    font-family: Times 'Times New Roman', Times, serif, sans-serif;
    color: #333333;
}

h1 {
    border: 5px darkblue;
}

h2 {
    color: darkgreen;
}

#header {
    position: sticky;
    top: 0;
    background-color: #cfe8f3;
    padding: 10px;
    z-index: 1000;
    text-align: center;
}

#header2 {
    padding: 0px;
    text-align: center;
}

#footer {
    background-color: #d6eaff;
    padding: 10px;
    text-align: center;
}

a:link {
    color: blue;
}

a:visited {
    color: purple;
}

table {
    margin: auto;
}

input, textarea, select {
    padding: 5px;
}




