/*!********************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[14].oneOf[7].use[2]!./node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[14].oneOf[7].use[3]!./src/app/register/register.module.css ***!
  \********************************************************************************************************************************************************************************************************************************************************************************/
.register_splash__ab7Sn {
    background-color: var(--bs-dark);
    color: white;
    width: 100%;
    display: flex;
    min-height: 100vh;
}

.register_splashContent__L_MxX {
    /* Use flex layout to position .info and .form side by side */
    display: flex;
    height: 100%;
    min-height: 100vh;
    width: 100%;
}

.register_info__gP1yP {
    /* Limit the side panel to 300px wide */
    width: 300px;
    max-width: 300px;

    /* Ensure it stretches the full height of the parent */
    /* If the parent doesn't set a fixed height, you can use flex: 1, or keep min-height. */
    background-color: #f0f0f0;
    /* Add any padding or styling you'd like here */
    /* padding: 1rem; */
}

/* Hide the .info panel on screens 1000px or narrower */
@media (max-width: 1000px) {
    .register_info__gP1yP {
        display: none;
    }
}

.register_form__4g4Cp {
    /* Occupy remaining space when .info is visible */
    flex: 1 1;
    
    width: 100%;
    /* Center form content if you want a nicely centered layout */
    display: flex;
    justify-content: center;
    align-items: center;
}
