
        /* Reset margin dasar */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        /* Mengatur posisi formulir tepat di tengah layar */
        body {
            display: flex;
            justify-content: center;
            align-items: center;
            height: 100vh;
            background-color: #f4f7f6;
        }

        /* Desain Kotak Login */
        .login-box {
            background: linear-gradient(135deg, #dff7ff, #cef4eb, #bfeb9d);
            width: 350px;
            padding: 40px;
            border-radius: 8px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        }

        /* Judul Kotak Login */
        .login-box h2 {
            text-align: center;
            margin-bottom: 25px;
            color: #333333;
        }

        /* Label Input */
        .login-box label {
            display: block;
            margin-bottom: 8px;
            color: #666666;
            font-size: 14px;
        }

        /* Form Input */
        .login-box input[type="text"],
        .login-box input[type="password"] {
            width: 100%;
            padding: 12px;
            margin-bottom: 20px;
            border: 1px solid #cccccc;
            border-radius: 4px;
            font-size: 16px;
        }

        /* Efek fokus pada input */
        .login-box input:focus {
            border-color: #007bff;
            outline: none;
        }

        /* Tombol Login */
        .login-box button {
            width: 100%;
            padding: 16px;
            background-color: #007bff;
            color: white;
            border: none;
            border-radius: 8px;
            font-size: 16px;
            cursor: pointer;
            transition: background-color 0.3s ease;
        }

        /* Efek hover pada tombol */
        .login-box button:hover {
            background-color: #0056b3;
        }

        /* Footer form (opsi untuk lupa password atau daftar) */
        .login-footer {
            text-align: center;
            margin-top: 20px;
        }

        .login-footer a {
            color: #007bff;
            text-decoration: none;
            font-size: 14px;
        }

        .login-footer a:hover {
            text-decoration: underline;
        }