body {
            height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            background: #f4f6f9;
        }
        .login-container {
            position: relative;
            width: 90%;
            max-width: 1000px;
            background: white;
            border-radius: 12px;
            box-shadow: 0 4px 10px rgba(0,0,0,0.1);
            overflow: hidden;
            display: flex;
        }
        .login-image {
            flex: 1;
            background: url('https://images.unsplash.com/photo-1556761175-5973dc0f32e7') no-repeat center center;
            background-size: cover;
        }
        .login-form {
            flex: 1;
            padding: 50px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }
        .form-control {
            border-radius: 8px;
        }
        .btn-custom {
            border-radius: 8px;
            width: 100%;
        }
        .small-text {
            font-size: 0.9rem;
        }