        /* ОБЩИЕ СТИЛИ */
        * { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Inter', sans-serif; }
        body { background-color: #fff; height: 100vh; overflow: hidden; }
        .container { display: flex; height: 100vh; }

        /* ЛЕВАЯ ЧАСТЬ (ФОРМЫ) */
        .login-side {
            flex: 1;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            padding: 40px;
        }

        .form-wrapper { width: 100%; max-width: 380px; }
        .logo {width: 90px;margin-bottom: 32px;cursor: pointer;}
        h1 { font-size: 32px; font-weight: 700; color: #111; margin-bottom: 12px; }
        .subtitle { color: #6B7280; margin-bottom: 32px; font-size: 16px; line-height: 1.5; }

        /* ИНПУТЫ */
        .input-box {
            background-color: #F3F4F6;
            border-radius: 12px;
            padding: 10px 16px;
            margin-bottom: 16px;
            border: 1px solid transparent;
            transition: all 0.2s ease;
        }
        .input-box:focus-within {
            background-color: #fff;
            border-color: #000;
            box-shadow: 0 0 0 4px rgba(0, 0, 0, 0.05);
        }
        .input-box label { display: block; font-size: 12px; color: #6B7280; margin-bottom: 2px; }
        .input-box input {
            width: 100%; border: none; background: transparent; outline: none;
            font-size: 15px; color: #111; padding: 0; font-weight: 500;
        }

        /* ДИЗАЙН ЧЕКБОКСА */
        .extra-options {
            display: flex; justify-content: space-between;
            align-items: center; margin: 24px 0; font-size: 14px;
        }
        .remember-me {
            display: flex; align-items: center; gap: 10px;
            color: #374151; cursor: pointer; user-select: none; font-weight: 500;
        }
        .remember-me input { position: absolute; opacity: 0; width: 0; height: 0; }
        .checkmark {
            height: 20px; width: 20px; background-color: #F3F4F6;
            border: 1px solid #D1D5DB; border-radius: 6px; display: flex;
            align-items: center; justify-content: center; transition: 0.2s;
        }
        .remember-me input:checked ~ .checkmark { background-color: #000; border-color: #000; }
        .checkmark:after {
            content: ""; display: none; width: 5px; height: 10px;
            border: solid white; border-width: 0 2px 2px 0; transform: rotate(45deg); margin-bottom: 2px;
        }
        .remember-me input:checked ~ .checkmark:after { display: block; }

        /* КНОПКИ */
        .forgot-pass { color: #000; text-decoration: none; font-weight: 600; cursor: pointer; }
        .btn-black {
            width: 100%;
            padding: 14px;
            background: #000;
            color: #fff;
            border: none;
            border-radius: 12px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            margin-bottom: 16px;
            transition: opacity 0.3s;
        }
        .btn-black:hover { opacity: 0.8; }
        .btn-outline {
            width: 100%;
            padding: 12px;
            background: #fff;
            color: #374151;
            border: 1px solid #D1D5DB;
            border-radius: 12px;
            font-size: 16px;
            font-weight: 500;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            cursor: pointer;
        }

        .footer-text { text-align: center; margin-top: 32px; font-size: 14px; color: #6B7280; }
        .footer-text a { color: #000; font-weight: 600; text-decoration: none; cursor: pointer; }

        /* ПРАВАЯ ЧАСТЬ */
        .image-side {
            flex: 1;
            background-image: linear-gradient(to bottom, rgb(0 0 0 / 30%), rgb(0 0 0)), url(/in/img/202505161017156.jpg);
            background-size: cover;
            background-position: center;
        }

        .hidden { display: none; }
        @media (max-width: 900px) { .image-side { display: none; } }