.login-form-section {
    height: 100vh;
    width: 100%;
    display: grid;
    align-items: center;
}

.login-image {
    background-image: url(../images/Banner.jpg);
    background-repeat: no-repeat;
    height: 70%;
    background-position: top -170px center;
    background-size: 100%;
    position: relative;
}

.login-image::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
}

.login-form {
    top: -108px;
    right: 5rem;
    background: black;
    padding: 3rem;
    width: 35rem;
    z-index: 999 !important;
    min-height: 20rem !important;
}

.login-text {
    color: #ffcc00;
    font-size: 25px;
    margin-bottom: 0.7rem;
}

.login-password a {
    color: #fff;
}

.login-button {
    width: 100% !important;
    background-color: #000 !important;
    height: 45px;
    border: 1px solid #fff !important;
    color: #fff;
    transition: all 0.5s ease;
    border-radius: 0.25rem !important;
}

.login-button:hover,
.btn-primary.login-button:hover {
    background-color: #fff !important;
    color: #000 !important;
    outline: 0 !important;
    transition: none !important;
    scale: 1 !important;
}

.customizable-logo img {
    height: 3rem;
}

body {
    background-color: #f9f9f9;
}

.login-bottom-section {
    display: grid;
    left: 0;
    bottom: 0;
}

.left-section {
    background-color: #fff;
    padding: 3rem;
    position: relative;
    min-height: 20rem;
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    bottom: -108px;
}

.left-section-description {
    flex-grow: 1;
}

.right-section {
    height: 100px;
    position: absolute;
    right: 0;
    background-color: #98b9f2;
    bottom: 0px;
    width: 50%;
}

.footer-logo-section img {
    height: 50px;
}

.footer-logo-section {
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: end;
    padding-right: 3rem;
}

.qrText {
    color: #ffcc00;
    margin-bottom: 0 !important;
}

@media screen and (min-width:1400px) {
    .login-form {
        width: 40rem !important;
    }
}

@media screen and (min-width:1200px) and (max-width:1400px) {
    .login-image {
        background-position: top -117px center;
    }

    .login-form {
        padding: 1.5rem !important;
    }
}

.jumbotron {
    padding: 0 !important;
    margin-bottom: 0 !important;
    background-color: var(--color-white) !important;
}

.jumbotron .container {
    padding: 0 !important;
}

.left-section-wrapper {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.left-section-description {
    flex: 1;
    display: flex;
    align-items: center;
}

#login-button img {
    transition: filter 0.3s ease;
}

#login-button:hover img {
    filter: brightness(0);
}

.customizable-logo {
    text-align: center;
}