body {
    font-family: 'Poppins', sans-serif;
    height: 100vh;
    overflow: hidden;
}
.login-container {
    height: 100vh;
}
.left-panel {
    background-color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 50px 100px;
}
.right-panel {
    background: url('../images/login_bg.png') no-repeat center center;
    background-size: cover;
    position: relative;
}
/* Overlay to match the blueish tint in your image */
/* .right-panel::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(15, 61, 74, 0.3); 
} */
.logo-text {
    font-weight: 700;
    color: #0f3d4a;
    font-size: 1.5rem;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 260px;
    width: 100%;
}
.select2-container .select2-selection--single {
    box-sizing: border-box;
    cursor: pointer;
    display: block;
    height: 47px;
    user-select: none;
    -webkit-user-select: none;
}
.form-control, .form-select, .select2-container--default .select2-selection--single {
    padding: 12px 15px;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
    color: #666;
    font-size: 0.9rem;
    background-color: #fff;
}
.select2-container--default .select2-selection--single, .select2-container--default .select2-selection--single .select2-selection__arrow {
    min-height: 47px;
}
.select2-container--default .select2-selection--single .select2-selection__rendered {
    color: #444;
    line-height: 1.5;
}
.logo-icon {
    font-size: 2rem;
    margin-right: 10px;
    color: #d4a017; /* Gold color for book pages */
}
.btn-custom {
    background-color: #0f3d4a;
    color: white;
    padding: 12px;
    border-radius: 8px;
    font-weight: 500;
    width: 100%;
}
.btn-custom:hover {
    background-color: #0a2a33;
    color: white;
}
.form-control {
    background-color: #f8f9fa;
    border: 1px solid #eee;
    padding: 12px;
    border-radius: 8px;
}
.forgot-password {
    color: #ff6b6b;
    text-decoration: none;
    font-size: 0.9rem;
}
@media (max-width: 768px) {
    .left-panel { padding: 30px; }
    body { overflow-y: auto; }
    .login-container { height: auto; }
    .right-panel { height: 300px; }
}