﻿
body {
    margin: 0;
    padding: 0;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.login-page-container {
    display: flex;
    width: 100%;
    height: 100vh;
}

/* Responsive Adjustments for Desktop */
@media (min-width: 768px) {
    .login-page-container {
        flex-direction: row; /* Side-by-side sections for tablets and desktops */
    }

    .right-section .brand-content {
        display: none;
    }

    .right-section .line-partition {
        display: none;
    }
}

.password-container {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
}

    .password-container input {
        flex: 1;
        padding-right: 40px;
    }

#learnerLoginForm i {
    position: absolute;
    right: 10px;
    cursor: pointer;
    font-size: 1.25rem;
    color: var(--color-primary) !important;
    margin-top: -12px;
}