/* Styling for the information section */
.info-section {
    position: absolute;
    top: 100px;                /* Adjust to align it next to the login box */
    left: 20px;
    width: 70%;                /* Adjust the width as needed */
    padding: 20px;
    background-color: #f7f7f7;  /* Light background for distinction */
    border-radius: 8px;
    font-family: Arial, sans-serif;
    font-size: 14px;
    color: #333;
    line-height: 1.6;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

.info-section h1 {
    font-size: 24px;
    color: #2b2b2b;
    margin-bottom: 15px;
}

.info-section h2 {
    font-size: 20px;
    color: #3c3c3c;
    margin-top: 20px;
    margin-bottom: 10px;
}

.info-section p {
    margin-bottom: 15px;
}

.info-section ul {
    list-style-type: disc;
    padding-left: 20px;
    margin-bottom: 20px;
}

.info-section ul li {
    margin-bottom: 10px;
}

.info-section ul li strong {
    color: #1a73e8;            /* Highlight the advantages */
}

.info-section p strong {
    font-weight: bold;
    color: #1a73e8;
}
