body,
html {
    height: 100%;
    margin: 0;
    font-family: "Inter", sans-serif;
    background: #f0f4ff;
}

.split-row {
    min-height: 100vh;
}

.left-panel {
    background-image: url('https://images.unsplash.com/photo-1522071820081-009f0129c71c?ixlib=rb-4.0.3&auto=format&fit=crop&w=1350&q=80');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.left-panel::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
    pointer-events: none;
}

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

.login-card {
    border: none;
    border-radius: 14px;
    padding: 25px;
    background: #ffffff;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    width: 100%;
    max-width: 400px;
}

.login-title {
    color: #6c9bcf;
    font-weight: 600;
}

.btn-primary {
    background: #6c9bcf;
    border: none;
}

.btn-primary:hover {
    background: #5c8ac3;
}

.footer-text {
    font-size: 0.75rem;
    color: #6c757d;
    border-top: 1px solid #dee2e6;
    padding-top: 1rem;
    margin-top: 1rem;
    text-align: center;
}

