header{
    background-color: cadetblue;
    color: #FFF;
    margin-bottom: 50px;
}
header p{
    margin: 0;
    padding: 5px;
}
#login-section{
    max-width: 80%;
    width: 800px;
    margin: 0 auto;
    background-color: #EEE;
    border-radius: 10px;
    overflow: hidden;
}
.section-head{
    padding: 20px;
    background-color: lightseagreen;
}
.section-head h3{
    margin: 0;
}
.section-body{
    padding: 20px;
}
.txt-center{
    text-align: center;
}
.login-btn{
    border-radius: 5px;
    padding: 20px;
    background-color: cornflowerblue;
    color: #FFF;
    text-decoration: none;
    display: inline-block;
    font-weight: bold;
}
.login-btn.color-gr{
    background-color: #DB5227;
}
.footer-copy{
    text-align: center;
    font-size: 0.7rem;
}
#anq-section{
    max-width: 80%;
    width: 800px;
    margin: 0 auto 30px;
    background-color: #EEE;
    border-radius: 10px;
    overflow: hidden;
}
#program-section{
    max-width: 80%;
    width: 800px;
    margin: 0 auto 30px;
    background-color: #EEE;
    border-radius: 10px;
    overflow: hidden;
}
.section-head h3{
    color: #FFF;
}
.programs-wrap{
    border-radius: 5px;
}
.programs-link{
    display: flex;
    text-decoration: none;
    margin-bottom: 10px;
    justify-content: space-between;
}
.programs-link:hover{
    background-color: rgba(255,255,255,0.6);
}
.news-wrap{
    border-radius: 5px;
}
.news-wrap:hover{
    background-color: rgba(255,255,255,0.6);
}
.programs-link > .program-title{
    flex-grow: 2;
}
.programs-link > .program-date,
.programs-link > .program-asessment{
    flex-grow: 1;
}
.news-link{
    display: flex;
    text-decoration: none;
}
.program-date,
.program-asessment,
.program-title,
.news-date,
.news-title{
    padding: 5px 10px;
    line-height: 45px;
}
.program-asessment{
    text-align: right;
}
.news-arrow{
    width: 25px;
    padding: 10px 5px;
    box-sizing: border-box;
}
.program-asessment a.btn{
    text-decoration: none;
    color: #FFF;
    background-color: #813F75;
    display: inline-block;
    border-radius: 7px;
    padding: 0 13px;
}
.message {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 20px;
    background-color: #4CAF50; /* Success background color */
    color: white;
    font-size: 16px;
    border-radius: 5px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 1000; /* Ensure it's on top of other elements */
    cursor: pointer;
}

.hidden {
    display: none;
}
