.ic-Login-header {
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 95% !important;
}

.ic-Login-header img {
    width: 25%; 
    display: block; 
    margin: 0 auto; 
    text-align: center; 
}
.ic-Login__innerContent{
    padding-top:10px ;
}

.ic-Login-header::after {
    content: "Florida University Southeast School of Professional Studies";
    display: block;
    font-size: 18px; 
    color: #dfb975;
    text-align: center;
    margin-bottom: 10px;
    font-weight: 500; 
    font-family: 'Georgia', serif;}

.ic-Login__container {
    opacity: 0.8;
}
 /* 🌿 Card Base */
 .course-card {
    background: linear-gradient(135deg,#ffffff,#ffffff);
    border-radius: 10px;
    cursor: pointer;
    border-bottom: 5px solid #2e9d91;
    transition: all 0.35s ease;
    box-shadow: 0 0 0 rgba(0,0,0,0);
}
.course-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 18px rgba(0,0,0,0.15);
    background: linear-gradient(135deg,#d7fff7,#f4fff7);
}

/* 🌱 Text Hover Effects */
.course-card h3 a,
.course-card p a {
    color: #004d40;
    text-decoration: none !important;
    transition: color 0.25s ease, text-decoration-color 0.25s ease;
    
}
.course-card h3 a:hover,
.course-card p a:hover {
    color: #00796b;
    text-decoration: underline !important;
    text-decoration-color: #00796b;
}