

.app-wrapper {
    display: grid;
    grid-template-rows: 100px 1fr 30px; /* Header, main content, and footer heights */
    height: 100vh;
    max-width: 100%;
}

/* Main Content */
.home-content {
    flex-grow: 1; /* Makes the main content take the available space */
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #fff; /* Optional: Background color for the main content */
    height: 100%;
    max-width: 100%;
}

/* Form Content */
.main-content {
    flex-grow: 1; /* Makes the main content take the available space */
    display: flex;
    justify-content: center;
    background-color: #fff; /* Optional: Background color for the main content */
    height: 100%;
    max-width: 100%;
}

/* Form Style */
.form-style {
    display: flex;
    align-items: center;
    font-family: 'Arial', sans-serif;
    font-size: clamp(12px, 3vw, 16px);
    padding: 5px;
}

.topalign-style {
    display: flex;
    align-items: top;
    font-family: 'Arial', sans-serif;
    font-size: clamp(12px, 3vw, 16px);
    padding: 5px;
}

/* Text Style */
.label-style {
    font-family: 'Arial', sans-serif;
    font-size: clamp(12px, 3vw, 16px);
    padding: 10px;
    max-width: 150px;
}

/* Text Style */
.profile-info {
    font-family: 'Arial', sans-serif;
    font-size: clamp(12px, 3vw, 16px);
    padding: 10px;
}

.label2-style {
    font-family: 'Arial', sans-serif;
    font-size: clamp(12px, 3vw, 16px);
    padding-right: 10px;
}

/* Textbox Style */
.textbox-style {
    font-family: 'Arial', sans-serif;
    font-size: clamp(12px, 3vw, 16px);
    padding: 10px;
    max-width: 300px;
}

.textbox2-style {
    font-family: 'Arial', sans-serif;
    font-size: clamp(12px, 3vw, 16px);
    padding: 10px;
    margin-right: 15px;
    max-width: 100px;
}

.textbox3-style {
    font-family: 'Arial', sans-serif;
    font-size: clamp(12px, 3vw, 16px);
    padding: 10px;
    margin-right: 15px;
    max-width: 40px;
}

/* Textarea Style */
.textarea-style {
    font-family: 'Arial', sans-serif;
    font-size: clamp(12px, 3vw, 16px);
    padding: 10px;
    max-width: 50%;
    height: 200px;
}

.key1-style {
    max-width: 760px;
    height: auto;
    margin: 20px;
    margin-top: 0px;
}

.key-style2 {
    max-width: 860px;
    height: auto;
    margin: 20px;
    margin-top: 0px;
}

/* Section Head title */


.hidden-text {
    color: #fff;
    margin: 0;
    padding: 0;
    padding-right: 6px;
    font-size: clamp(12px, 3vw, 16px);
    font-weight: normal;
    font-family: 'Arial', sans-serif;
}




.twocol-list {
    list-style-type: decimal;
    margin-left: 30px;
    padding: 0;
    font-size: clamp(12px, 3vw, 16px);
    color: #333;
    display: grid;
    grid-template-columns: repeat(2, auto); /* 2 items per row */
    gap: 15px 20px; /* Space between items */
}

.twocol-list li {
    max-width: auto; /* max-width of each item */
}

.onecol-list {
    list-style-type: decimal;
    margin-left: 30px;
    padding: 0;
    font-size: clamp(12px, 3vw, 16px);
    color: #333;
    gap: 15px;
}

.onecol-list li {
    max-width: auto; /* max-width of each item */
    padding-bottom: 15px;
}

.slides-container {
    max-width: 860px;                  /* Full max-width of the window */
    height: auto;                /* Set carousel height */
    margin-bottom: 15px;
}

.slides-button {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 10px;
    max-width: 860px;
}

.key-button {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 10px;
}

/* lesson-review */
.lesson-review {
    display: flex;
    align-items: center;
    gap: 50px;                      /* Space between links */
}


.button-style {
    max-width: 100px;
    height: 32px;
    margin-left: 20px;
    margin-right: 20px;
    font-family: 'Arial', sans-serif;
    font-size: clamp(12px, 3vw, 16px);
}

.subscribe-style {
    max-width: 200px;
    height: 32px;
    margin-left: 10px;
    font-family: 'Arial', sans-serif;
    font-size: clamp(12px, 3vw, 16px);
    background-color: #b1fade;
    border: 1px solid #000;
    cursor: pointer;
    transition: background-color 0.2s, transform 0.1s;
}

/* Hover style */
.subscribe-style:hover {
    background-color: #91eac8;
}

/* Pressed (active) style */
.subscribe-style:active {
    background-color: #6fdab3;
    transform: scale(0.97);
}

.cancel-style {
    max-width: 200px;
    height: 32px;
    margin-left: 10px;
    font-family: 'Arial', sans-serif;
    font-size: clamp(12px, 3vw, 16px);
    background-color: #fab1b1;
    border: 1px solid #000;
    cursor: pointer;
    transition: background-color 0.2s, transform 0.1s;
}

/* Hover style */
.cancel-style:hover {
    background-color: #f88b8b;
}

/* Pressed (active) style */
.cancel-style:active {
    background-color: #ff8484;
    transform: scale(0.97);
}


/* Navigation links */
.forgot-button {
    font-size: clamp(12px, 3vw, 16px);
    color: #413aff;
    text-decoration: none;
    transition: color 0.3s ease;
    font-family: 'Arial', sans-serif;
    margin-top: 10px;
    margin-left: 20px;
    background-color: #ffffff00;
    border: 0px;
    cursor: pointer;
}

/* Hover style */
.forgot-button:hover {
    color: #f00f0f;
}