/*Adding a border color to the lines seperating each section of the home.html page*/
hr{
    border-color:grey;
}
.contentDivider{
    margin: 30px 0;
    border-top: 1px solid #ccc;
}
#formField{
    background-color: #d5d5d5;
}
.row:nth-of-type(2) p {
    color: black;
}
h1{
    margin: 20px 0;
    padding: 0 10px;
}
.note-panel {
    background-color: #999; /* Change the color to a lighter grey */
    border: none;
}

.note-panel p {
    color: #333; /* Change the text color to a dark color for better visibility */
    margin: 0;
}
#greyNotePadDiv{
    margin-top:24px;
}
.label-text{
    font-weight: normal;
    margin-right: 10px;
}
.row{
    margin-bottom: 10px;
}
#sessionBorder{
    border: 1px solid grey;
    border-radius: 5px;
    margin: 10px;
    padding: 10px;
}
img{
    margin: 10px;
    padding: 10px;
}
/*
    Displaying errors inline and with a red color.
 */
.err{
    color: red;
    font-size: 14px;
    margin-top: 5px;
}
#optInText{
    font-weight: normal;
}