html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    min-height: 100dvh; /* Use dynamic units for mobile stability */
    overflow-x: hidden;
    font-family: Arial, Helvetica, sans-serif;
}

.text-style p, .text-error-style p,
.email-input-style input, .submit-button-style input, 
.previous-button-style input, .select-button-style button, 
.session-style {
    position: static; /* Reset from relative/absolute */
    transform: none;
    text-align: center;
    margin: 20px;
    color: #414141;
}

.header-img {
    display: flex;
    justify-content: center;
    gap: 20px; /* Space between images if there are multiple */
    width: 100%;
    margin-bottom: 20px;
}

.header-text {
    text-align: center;
    color: #5e5e5e;
    font-size: 22px;
    margin-top: 60px;
}

.image-wrapper_1 {
    display: flex;
}

.image-wrapper_2 {
    display: flex;
    margin-top: 40px;
}

.body-style {
    display: flex;
    flex-direction: column;
    /* justify-content: center; */
    align-items: center;
    min-height: 100dvh;
    padding: 20px; /* Provides spacing on small screens */
    background: linear-gradient(to bottom, transparent 0%, #F8F8F8 20%, #F8F8F8 100%);
}

.text-error-style p{
    color: #ff0000;
}

.email-input-style{
    display: flex;
    justify-content: center;
    width: 100%;
}

.email-input-style input {
    border-radius: 25px;
    padding: 15px 15px 15px 15px;
    background-color: #F8F8F8;
    border: 1px solid #69727d;
    width: 90%;
    max-width: 400px; /* Prevents stretching too wide on desktop */
    box-sizing: border-box; /* Includes padding in width calculation */
}

.submit-button-style {
    display: flex;
    justify-content: center;
    width: 100%;
}

.submit-button-style button {
    border-radius: 16px;
    padding: 10px 20px;
    background: #414141;
    color: white;
    border: 1px solid #ccc;
}

.submit-button-style button:hover {
    background: #2C75BA;
}

.previous-button-style {
    display: flex;
    justify-content: center;
    width: 100%;
}
.previous-button-style input {
    border-radius: 16px;
    padding: 10px 20px;
    background: #5e5e5e;
    color: white;
    border: 1px solid #ccc;
}

.previous-button-style input:hover {
    background: #2C75BA;
}

.session-entry-style {
    display: flex;
}

.select-button-style button {
    border-radius: 16px;
    padding: 10px 20px;
    background: #5e5e5e;
    color: white;
    border: 1px solid #ccc;
    margin: 10px 20px 0px 10px;
}

.select-button-style button:hover {
    background: #2C75BA;
}




