/* Registration Section Toggle */
.register-section {
    display: none;
}

/* Fixed 100vh layout */
body.login-body-custom {
    overflow: hidden !important;
    /* Prevent body scroll */
    height: 100vh;
}

.login-section {
    height: 100vh;
    /* Full viewport height */
}

/* Left Panel: Static and full height */
.left-panel {
    height: 100%;
    overflow: hidden;
}

.left-panel-content {
    height: 100%;
    justify-content: center;
}

/* Right Panel: Scrollable independently */
.right-panel {
    height: 100vh;
    overflow-y: auto;
    /* Allow vertical scroll */
    display: block;
    /* Revert to block */
    padding: 0;
}

/* Wrapper for safe centering */
.auth-scroll-wrapper {
    min-height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 40px;
}

.login-card-custom {
    margin: auto;
    /* Center vertically and horizontally in flex column */
    width: 100%;
    max-width: 450px;
    /* Ensure it matches the requested width */
}

.text-484848 {
    color: #484848;
}