 body {
            font-family: 'Inter', sans-serif;
            background: #EEECE8;
            color: #040C42;
            margin: 0;
            padding: 0;
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow-x: hidden;
        }

        #particles-js {
            position: absolute;
            width: 100%;
            height: 100%;
            z-index: 0;
        }

        .container {
            max-width: 400px;
            background: rgba(4, 12, 66, 0.05);
            padding: 2rem 2rem 2.5rem;
            border-radius: 20px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
            z-index: 1;
            opacity: 0;
            transform: translateY(50px);
            transition: opacity 0.3s ease, transform 0.3s ease;
        }

        .container.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .container-backdrop {
            position: absolute;
            max-width: 400px;
            width: 100%;
            padding: 2rem 2rem 2.5rem;
            background: #EEECE8;
            border-radius: 20px;
            z-index: 0.5;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
        }

        .logo {
            position: relative;
            width: 100%;
            max-width: 220px;
            height: 80px;
            margin: 0 auto 1.5rem;
            background-size: contain;
            background-repeat: no-repeat;
            background-position: center;
        }

        .logo img {
            width: 100%;
            height: 100%;
            display: block;
            transition: transform 0.3s ease;
            opacity: 1;
        }

        .logo img:hover {
            transform: scale(1.05);
        }

        .form-control {
            background: rgba(4, 12, 66, 0.05);
            border: 1px solid #040C42;
            border-radius: 8px;
            padding-left: 2.5rem;
            color: #040C42;
        }

        .form-control::placeholder {
            color: #040C42;
            opacity: 0.6;
        }

        .form-control:focus {
            background: rgba(4, 12, 66, 0.1);
            border-color: #BC7201;
            box-shadow: 0 0 5px rgba(188, 114, 1, 0.5);
            color: #040C42;
        }

        .input-group {
            position: relative;
        }

        .input-group i {
            position: absolute;
            left: 10px;
            top: 50%;
            transform: translateY(-50%);
            color: #BC7201;
        }

        .btn-primary {
            background: #BC7201;
            border: none;
            border-radius: 8px;
            padding: 0.75rem;
            color: #EEECE8;
            width: 48%;
            transition: background 0.3s, transform 0.3s, box-shadow 0.3s;
        }

        .btn-primary:hover {
            background: #A65D00;
            transform: scale(1.05);
            box-shadow: 0 5px 15px rgba(188, 114, 1, 0.5);
        }

        .btn-primary:active {
            transform: scale(0.95);
        }

        .btn-cancel {
            background: #040C42;
            border: none;
            border-radius: 8px;
            padding: 0.75rem;
            color: #EEECE8;
            width: 48%;
            text-align: center;
            text-decoration: none;
            transition: background 0.3s, transform 0.3s, box-shadow 0.3s;
        }

        .btn-cancel:hover {
            background: #BC7201;
            transform: scale(1.05);
            box-shadow: 0 5px 15px rgba(188, 114, 1, 0.5);
        }

        .btn-cancel:active {
            transform: scale(0.95);
        }

        .button-group {
            display: flex;
            justify-content: space-between;
            gap: 10px;
            margin-top: 1rem;
        }

        @media (max-width: 576px) {
            .container {
                margin: 1rem;
                padding: 1.5rem;
            }

            .container-backdrop {
                max-width: 100%;
                padding: 1.5rem;
                margin: 1rem;
            }

            .logo {
                max-width: 180px;
                height: 60px;
            }

            .button-group {
                flex-direction: column;
                gap: 10px;
            }

            .btn-primary, .btn-cancel {
                width: 100%;
            }
        }