        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Poppins', sans-serif;
        }

        body {
            background: radial-gradient(circle at top left, #1a0033, #0a001a);
            color: #fff;
            display: flex;
            justify-content: center;
            align-items: center;
            overflow: hidden;
            height: 115vh;
            overflow-y: scroll;
        }

        .login-container {
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(10px);
            padding: 40px;
            border-radius: 16px;
            width: 100%;
            max-width: 600px;
            box-shadow: 0 0 5px rgba(155, 0, 255, 0.4);
            border: 1px solid rgba(155, 0, 255, 0.3);
            animation: fadeIn 1s ease-in-out;
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(30px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .login-header {
            text-align: center;
            margin-bottom: 30px;
        }

        .login-header h1 {
            font-size: 28px;
            color: #bb00ff;
            margin-bottom: 10px;
            text-shadow: 0 0 15px rgba(187, 0, 255, 0.6);
        }

        .login-header p {
            font-size: 14px;
            color: #ccc;
        }

        form {
            display: flex;
            flex-direction: column;
        }

        label {
            font-size: 14px;
            margin-bottom: 15px !important;
            color: #ccc;
        }

        input.input-form {
            background: rgba(255, 255, 255, 0.08);
            border: 1px solid rgba(187, 0, 255, 0.3);
            border-radius: 8px;
            padding: 12px;
            color: #fff;
            margin: 10px 0 20px 0;
            outline: none;
            font-size: 14px;
            transition: border 0.3s ease, box-shadow 0.3s ease;
            width: 100%;
        }

        input.input-form:focus {
            border-color: #bb00ff;
            box-shadow: 0 0 8px rgba(187, 0, 255, 0.7);
        }

        select {
            background: rgba(255, 255, 255, 0.08);
            border: 1px solid rgba(187, 0, 255, 0.3);
            border-radius: 8px;
            padding: 12px;
            color: #fff;
            margin: 10px 0 20px 0;
            outline: none;
            font-size: 14px;
            transition: border 0.3s ease, box-shadow 0.3s ease;
            width: 100%;
        }

        select:focus {
            border-color: #bb00ff;
            box-shadow: 0 0 8px rgba(187, 0, 255, 0.7);
        }

        /* Custom dropdown options */
        option {
            background-color: #1a002b;
            color: #fff;
            padding: 10px;
            width: 50%;
        }

        /* Optional scrollbar styling (Chrome, Edge) */
        select::-webkit-scrollbar {
            width: 8px;
        }

        select::-webkit-scrollbar-track {
            background: #2d0050;
        }

        select::-webkit-scrollbar-thumb {
            background: #7a00ff;
            border-radius: 8px;
        }

        select::-webkit-scrollbar-thumb:hover {
            background: #b366ff;
        }

        button {
            background: linear-gradient(90deg, #bb00ff, #7000cc);
            border: none;
            border-radius: 8px;
            padding: 12px;
            color: #fff;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.3s ease, box-shadow 0.3s ease;
            width: 100%;
        }

        button:hover {
            box-shadow: 0 0 20px rgba(187, 0, 255, 0.6);
        }

        .links {
            text-align: center;
            margin-top: 20px;
        }

        .links a {
            color: #bb00ff;
            text-decoration: none;
            margin: 0 8px;
            font-size: 14px;
            transition: color 0.3s ease;
        }

        .links a:hover {
            color: #d266ff;
            text-shadow: 0 0 8px rgba(187, 0, 255, 0.5);
        }