body {
    min-height: 100vh;
    background:
        linear-gradient(120deg, rgba(15, 39, 66, 0.72), rgba(34, 88, 132, 0.52)),
        url("/images/home6.jpg");
    background-size: cover;
    background-position: center;
}

.body-container {
    width: 100%;
    min-height: calc(100vh - 120px);
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 12px;
}

.footer-container {
    width: 100%;
}

.left-side-panel {
    width: 55%;
    min-height: 100%;
}

.right-side-panel {
    width: min(460px, 96%);
    margin: 24px 16px;
    padding: 20px 18px;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.38);
    background: rgba(10, 28, 45, 0.72);
    backdrop-filter: blur(8px);
    box-shadow: 0 16px 34px rgba(3, 16, 29, 0.34);
}

.right-body {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
}

.logo {
    width: 78px;
    min-width: 78px;
}

.brand-title {
    color: #fff;
    margin: 0;
    letter-spacing: 0.3px;
}

.brand-subtitle {
    color: #cae5ff;
    margin-top: 6px;
}

.login-form-elements {
    margin-top: 18px;
    display: flex;
    justify-content: center;
    flex-direction: column;
}

.login-title {
    color: #f0f8ff;
    font-size: 1.32rem;
}

.login-form-elements form {
    margin-top: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.form-element {
    width: 100%;
}

.login-form-elements form input[type="text"],
.login-form-elements form input[type="password"] {
    margin: 8px 0;
    width: 100%;
    background: rgba(248, 252, 255, 0.96);
    border: 1px solid #c1d5e8;
}

.show-pass-row {
    display: flex !important;
    align-items: center;
    justify-content: flex-start !important;
    gap: 8px;
    margin: 6px 0 4px;
}

#showHide {
    width: 18px !important;
    height: 18px !important;
    margin: 0 !important;
}

.show-pass-text {
    color: #d8e8f8;
    font-size: 0.94rem;
}

.login-form-elements .btn {
    margin-top: 12px;
    width: 100%;
}

@media screen and (max-width: 900px) {
    .left-side-panel {
        display: none;
    }

    .right-side-panel {
        width: min(460px, 96%);
        margin: 14px;
    }
}
