@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');

    body {
        margin: 0;
        font-family: 'Poppins', sans-serif;
        background: #e6e8eb;
    }

    .login-page {
        min-height: 100vh;
        display: grid;
        grid-template-columns: 67% 33%;
        background: #e6e8eb;
    }

    .login-hero {
        position: relative;
        overflow: hidden;
        background:
            linear-gradient(180deg, rgba(6, 12, 23, 0.4) 0%, rgba(6, 12, 23, 0.9) 100%),
            radial-gradient(circle at 40% 25%, rgba(255, 160, 90, 0.35), transparent 45%),
            radial-gradient(circle at 60% 68%, rgba(101, 47, 187, 0.35), transparent 40%),
            url('https://images.unsplash.com/photo-1499750310107-5fef28a66643?auto=format&fit=crop&w=1800&q=80');
        background-size: cover;
        background-position: center;
    }

    .login-hero::after {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(180deg, rgba(0, 0, 0, 0.08) 0%, rgba(1, 11, 25, 0.72) 82%);
    }

    .login-copyright {
        position: absolute;
        left: 34px;
        bottom: 26px;
        margin: 0;
        font-size: 24px;
        font-weight: 600;
        color: rgba(255, 255, 255, 0.94);
        z-index: 1;
    }

    .login-panel {
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 46px 36px;
        background: #e6e8eb;
    }

    .login-card {
        width: min(520px, 100%);
        color: #2f3a49;
    }

    .login-title {
        margin: 0;
        font-size: clamp(24px, 2vw, 32px);
        line-height: 1.15;
        font-weight: 700;
        letter-spacing: 0.2px;
        color: #2e3a48;
    }

    .login-subtitle {
        margin: 7px 0 44px;
        font-size: 18px;
        color: #556273;
    }

    .login-form {
        display: grid;
        gap: 18px;
    }

    .login-error {
        margin: 0;
        padding: 12px 14px;
        border-radius: 10px;
        border: 1px solid #ef4444;
        background: #fee2e2;
        color: #991b1b;
        font-size: 14px;
        font-weight: 500;
    }

    .login-input {
        width: 100%;
        border: 1px solid #cfd5dd;
        border-radius: 12px;
        background: #ffffff;
        padding: 14px 14px;
        font: inherit;
        font-size: 16px;
        color: #283443;
        box-sizing: border-box;
        outline: 0;
    }

    .login-input::placeholder {
        color: #808996;
    }

    .login-input:focus {
        border-color: #7eaed3;
        box-shadow: 0 0 0 3px rgba(126, 174, 211, 0.2);
    }

    .login-actions {
        margin-top: 10px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 18px;
    }

    .login-remember {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        color: #4f5d70;
        font-size: 14px;
        font-weight: 500;
        user-select: none;
    }

    .login-remember input {
        width: 16px;
        height: 16px;
        margin: 0;
        accent-color: #1f6fab;
        cursor: pointer;
    }

    .login-btn {
        border: 0;
        border-radius: 12px;
        background: #95c8e7;
        color: #174d73;
        font: inherit;
        font-size: 15px;
        font-weight: 700;
        padding: 10px 20px;
        cursor: pointer;
        transition: transform .2s ease, background-color .2s ease;
    }

    .login-btn:hover {
        background: #8bc0e0;
    }

    .login-btn:active {
        transform: translateY(1px);
    }

    .login-link {
        color: #1f6fab;
        text-decoration: none;
        font-size: 14px;
        font-weight: 500;
        line-height: 1.2;
    }

    .login-link:hover {
        text-decoration: underline;
    }

    @media (max-width: 1800px) {
        .login-copyright {
            font-size: 18px;
        }

        .login-title {
            font-size: clamp(22px, 2.2vw, 30px);
        }

        .login-subtitle {
            font-size: clamp(15px, 1.4vw, 18px);
            margin-bottom: 28px;
        }

        .login-input {
            font-size: clamp(14px, 1.1vw, 16px);
            padding: 14px 16px;
        }

        .login-btn {
            font-size: clamp(14px, 1vw, 16px);
            padding: 10px 20px;
            border-radius: 12px;
        }

        .login-link {
            font-size: clamp(14px, 1vw, 16px);
        }
    }

    @media (max-width: 1050px) {
        .login-page {
            grid-template-columns: 1fr;
        }

        .login-hero {
            min-height: 34vh;
        }

        .login-panel {
            min-height: 66vh;
            padding: 28px 20px 38px;
        }

        .login-copyright {
            left: 20px;
            bottom: 18px;
            font-size: 18px;
        }

        .login-title {
            font-size: clamp(21px, 7vw, 30px);
        }

        .login-subtitle {
            font-size: clamp(14px, 4vw, 17px);
            margin-bottom: 18px;
        }

        .login-input {
            font-size: clamp(14px, 4vw, 16px);
        }

        .login-actions {
            flex-direction: column;
            align-items: flex-start;
            gap: 10px;
        }

        .login-btn {
            width: 100%;
            text-align: center;
            font-size: clamp(14px, 4vw, 16px);
        }

        .login-link {
            font-size: clamp(13px, 3.8vw, 15px);
        }
    }
