/*-- -------------------------- -->
<---          Landing           -->
<--- -------------------------- -*/

#hero-administration {
    background-color: var(--headingText);
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    height: 200px; /* adjust as needed */
}

.administration-cs-title-white {
    padding-bottom: 2rem;
    font-size: clamp(2rem, 6vw, 3rem);
    color: var(--bodyTextWhite);
}

@media only screen and (min-width: 1024px) {

    #hero-administration {
        height: 275px; /* adjust as needed */
    }

}

/*-- -------------------------- -->
<---        administration            -->
<--- -------------------------- -*/

#administration {
    background-color: #F5F5F5;
}

#administration .cs-container {
    display: flex;
    flex-direction: column; 
    align-items: center; /* Add this to stretch the flex items */
    width: 100%; /* ensure the container takes up full width */
    gap: 2rem;
}

#administration .cs-container > div {
    flex: 1; /* make the children of the flex container equal width */
    display: flex; /* Add this */
    flex-direction: column; /* Add this */
    text-align: center; /* center the text within the divs */
}

#administration .cs-container > div ul {
    list-style-type: none; /* remove bullet points */
    padding-left: 0; /* remove default padding from list */
}

.content {
    min-width: 300px;
    width: 80vw;
    max-width: 500px;
    background: #FFFFFF;
    box-shadow: 0px 4px 25px rgba(0, 0, 0, 0.02);
    border-radius: 12px;
    position: relative; 
    padding: 30px;
    margin-bottom: 2rem;
}

.form-button {
    display: block;
    margin-bottom: 1rem;
}

.blue-hover-highlight {
    transition: color 0.3s; /* Add a smooth transition effect */
  }
  
  .blue-hover-highlight:hover {
    color: var(--primaryBlue); /* Change the color to blue on hover */
  }
  

@media only screen and (min-width: 1024px) {
    #administration .cs-container {
        flex-direction: row;
        justify-content: center;
        align-items: stretch;
    }
}