
/* Forms and Content Containers */
.auth-section {
    max-width: 900px;
    width: 100%;
    padding: 30px;
    color: var(--font-color);
    text-align: left;
    margin: 20px auto;
    top: 50px;
}

.auth-section h1 {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 20px;
}

.auth-section p {
    font-size: 1.25rem;
    line-height: 1.8; /* Improved readability */
    margin-bottom: 30px;
}

/* Adjust container for "About Us" */
.auth-section-wrapper {
    max-height: calc(100vh - 120px); /* allow space for header */
    overflow-y: auto;
    padding: 50px 20px;
}

.auth-content-wrapper{
    max-width: 900px;
    width: 100%;
    padding: 30px;
    color: var(--font-color);
    text-align: left;
    margin: 20px auto;
    margin-top: 50px;
}


