body {
    margin: 0;
    padding: 0;
    overflow: hidden;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.split-screen-body {
    display: flex;
    min-height: 100vh;
    width: 100vw;
    background: url("../img/login-bg.jpg") no-repeat center center;
    background-size: cover;
}

.left-panel {
    flex: 1;
    background-color: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
}

.right-panel {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    padding: 20px;
}

.login-card {
    max-width: 400px;
    width: 100%;
    margin: auto;
}

.card.bg-glass {
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 15px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.form-label {
    color: #fff !important;
    font-weight: 500;
}

input.form-control {
    background: rgba(255, 255, 255, 0.8);
    border: none;
    border-radius: 8px;
}

input.form-control:focus {
    box-shadow: 0 0 0 0.2rem rgba(19, 50, 97, 0.25);
    border-color: #133261;
}

#eye-icon {
    color: #133261;
    transition: color 0.3s ease;
}

#eye-icon:hover {
    color: #0f274c;
}

.alert {
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .split-screen-body {
        flex-direction: column;
    }

    .left-panel {
        display: none;
    }

    .right-panel {
        width: 100%;
        flex: none;
        height: 100vh;
    }
}

.left-panel-content {
    text-align: center;
    color: white;
    padding: 20px;
    border-radius: 10px;
}

.left-panel-content h1 {
    font-size: 3.5em;
    margin-bottom: 10px;
}

.left-panel-content p {
    font-size: 1.2em;
    margin-top: 0;
}